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'
1611612.3 Python folding ~
162162 *pymode-folding*
163163
164- Fast and usual python folding in Vim.
165164Enable pymode folding *'g:pymode_folding'*
166165>
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.
168170
169171-------------------------------------------------------------------------------
1701722.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')
3434" Enable/Disable pymode PEP8 indentation
3535call pymode#default (" g:pymode_indent" , 1 )
3636
37+ " TODO: currently folding suffers from a bad performance and incorrect
38+ " implementation. This feature should be considered experimental.
3739" Enable/disable pymode folding for pyfiles.
38- call pymode#default (" g:pymode_folding" , 1 )
40+ call pymode#default (" g:pymode_folding" , 0 )
3941" Maximum file length to check for nested class/def statements
4042call pymode#default (" g:pymode_folding_nest_limit" , 1000 )
4143" Change for folding customization (by example enable fold for 'if', 'for')
You can’t perform that action at this time.
0 commit comments