File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -161,10 +161,12 @@ Enable pymode indentation *'g:pymode_indent'
161
161
2.3 Python folding ~
162
162
*pymode-folding*
163
163
164
- Fast and usual python folding in Vim.
165
164
Enable pymode folding *'g:pymode_folding'*
166
165
>
167
- let g:pymode_folding = 1
166
+ let g:pymode_folding = 0
167
+
168
+ Currently folding is considered experimental. There are several issues with
169
+ its implementation.
168
170
169
171
-------------------------------------------------------------------------------
170
172
2.4 Vim motion ~
Original file line number Diff line number Diff line change @@ -34,8 +34,10 @@ call pymode#default('g:pymode_doc_bind', 'K')
34
34
" Enable/Disable pymode PEP8 indentation
35
35
call pymode#default (" g:pymode_indent" , 1 )
36
36
37
+ " TODO: currently folding suffers from a bad performance and incorrect
38
+ " implementation. This feature should be considered experimental.
37
39
" Enable/disable pymode folding for pyfiles.
38
- call pymode#default (" g:pymode_folding" , 1 )
40
+ call pymode#default (" g:pymode_folding" , 0 )
39
41
" Maximum file length to check for nested class/def statements
40
42
call pymode#default (" g:pymode_folding_nest_limit" , 1000 )
41
43
" Change for folding customization (by example enable fold for 'if', 'for')
You can’t perform that action at this time.
0 commit comments