@@ -8,19 +8,20 @@ This plugin allow you create python code in vim very easily.
88There is no need to install the pylint _, rope _ or any used python library on your system.
99
1010- Python objects and motion (]], 3[[, ]]M, vaC, viM, daC, ciM, ...)
11+ - Folding of python code
12+ - Virtualenv support
1113- Highlight syntax errors
1214- Highlight and auto fix unused imports
15+ - Many linters (pylint _, pyflakes _, ...) that can be run simultaneously
1316- Strong code completion
1417- Code refactoring
1518- Python documentation
1619- Run python code
1720- Go to definition
1821- Powerful customization
19- - Virtualenv support
20- - Many linters (pylint _, pyflakes _, ...) that can be run simultaneously
21- - And more...
22+ - And more, more ...
2223
23- See (old) screencast here: http://t.co/3b0bzeXA (sorry for quality, this is my first screencast)
24+ See (very old) screencast here: http://t.co/3b0bzeXA (sorry for quality, this is my first screencast)
2425
2526
2627.. contents ::
@@ -223,14 +224,38 @@ Default values: ::
223224 let g:pymode_rope_always_show_complete_menu = 0
224225
225226
226- Other stuff
227- -----------
227+ Automatically folding of python code
228+ --------------------------------------
228229
229230Default values: ::
230231
231- " Load python objects and motion
232+ " Enable python folding
233+ let g:pymode_folding = 1
234+
235+
236+ Vim python motions and operators
237+ --------------------------------
238+
239+ Default values: ::
240+
241+ " Enable python objects and motion
232242 let g:pymode_motion = 1
233243
244+
245+ Virtualenv support
246+ ------------------
247+
248+ Default values: ::
249+
250+ " Auto fix vim python paths if virtualenv enabled
251+ let g:pymode_virtualenv = 1
252+
253+
254+ Other stuff
255+ -----------
256+
257+ Default values: ::
258+
234259 " Load breakpoints plugin
235260 let g:pymode_breakpoint = 1
236261
@@ -240,15 +265,9 @@ Default values: ::
240265 " Autoremove unused whitespaces
241266 let g:pymode_utils_whitespaces = 1
242267
243- " Auto fix vim python paths if virtualenv enabled
244- let g:pymode_virtualenv = 1
245-
246268 " Set default pymode python indent options
247269 let g:pymode_options_indent = 1
248270
249- " Set default pymode python fold options
250- let g:pymode_options_fold = 1
251-
252271 " Set default pymode python other options
253272 let g:pymode_options_other = 1
254273
0 commit comments