How do I enable automatic folding in Vim? set foldmethod=syntax doesn't seem to do much of anything.
| |||
|
feedback
|
|
To allow folds based on syntax add something like the following to your .vimrc:
Syntax based folding is defined in the language's syntax files which are located in $VIM/syntax. But some languages don't have folding rules built into their syntax files. For example Python. For those languages you need to download something from http://vim.sf.net that does folds. Otherwise you will need to use folds based on indents. To do this effectively you will likely want to add the following to your .vimrc file:
Other kinds of foldingThere are 6 types of folds:
Personally I only use syntax folds. Usually I just want to fold the method and not fold every indent level. Inconsistent indenting and weirdly formatted legacy code at work often makes indent folding difficult or impossible. Adding marks to the document is tedious and people who don't use Vim won't maintain them when they edit the document. Manual folds work great until someone edits your code in source control and all your folds are now in the wrong place. More reading
| |||||||||
feedback
|