-
-
Notifications
You must be signed in to change notification settings - Fork 772
Fixed some typos in docs #879
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
1. **Be more productive**: Pymode saves time by bringing all the tools | ||
necessary for professional developers so that you can focus on bigger | ||
things. It has been finely tuned based on decades of experience working | ||
with Vim and is constantly kept up to date. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -353,7 +353,7 @@ Pymode has the ability to set code checkers options from pymode variables: | |||
Set PEP8 options *'g:pymode_lint_options_pep8'* | |||
> | |||
let g:pymode_lint_options_pep8 = | |||
\ {'max_line_length': g:pymode_options_max_line_length}) | |||
\ {'max_line_length': g:pymode_options_max_line_length} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had tried to copy & paste this line from the help doc into my ftplugin for python files, but was getting syntax errors b/c of the trailing ")"
@@ -373,7 +373,7 @@ Set pep257 options *'g:pymode_lint_options_pep257' | |||
Set pylint options *'g:pymode_lint_options_pylint'* | |||
> | |||
let g:pymode_lint_options_pylint = | |||
\ {'max-line-length': g:pymode_options_max_line_length}) | |||
\ {'max-line-length': g:pymode_options_max_line_length} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had tried to copy & paste this line from the help doc into my ftplugin for python files, but was getting syntax errors b/c of the trailing ")"
@@ -11,7 +11,7 @@ | |||
- ``:help pymode`` | |||
- <https://github.com/python-mode/python-mode/wiki> | |||
|
|||
**Please use python-mode tag on Stackoverflow to ask questions:** | |||
**Please use python-mode tag on Stackoverflow to ask questions:** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line and a few others below had unnecessary trailing whitespace on the line.
No description provided.