Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Probably I'm just noob that I don't get the idea of how cool vim folding is, but how it works for me is just annoying :)

  1. When I open the file it looks like this: http://clip2net.com/clip/m56531/1297862492-clipz16582-91kb.png or even this http://clip2net.com/clip/m56531/1297862538-clipw16582-38kb.png
  2. When I open all folds, they are closed again when I navigated to another buffer and came back.
  3. To be able to work with it I have to apply zR each time when opening a buffer.

I have these set up in .vimrc:

set foldlevelstart=99
set foldlevel=99

Could you please point me on how to disable the folding, or at least making the navigation to another buffer not to close the opened ones.

Probably somebody could also point me to an inspiring article about how cool folding is, so that I get some motivation to live with it :)

Thanks!

share|improve this question
When first starting vim, run :set foldlevel and :set foldlevelstart to see what they are set at. My inital guess is that these values are getting reset somewhere. When I add those values to my vimrc, everything works as expected. – karategeek6 Feb 16 '11 at 14:54

3 Answers

up vote 35 down vote accepted

You're not alone.

set nofoldenable    " disable folding
share|improve this answer

Add set nofoldenable to your ~/.vimrc to disable folding.

share|improve this answer
Works, thanks! However since you both answered at the same time, let's support zeuxcg since his reputation is lower – lyuba Feb 16 '11 at 13:59
@lyuba Technically I answered 20 seconds earlier, but I'm not complaining :p – meagar Feb 16 '11 at 14:35

Here is an article which briefly and concisely sums up why folding is cool. The one line reason is that folding makes navigating very large files a breeze.

If you want to leave folding enabled, and simply always start with all folds open, the vim wiki tells how. The method of interest to you would probably be the autocommand method.

I would also recommend searching for custom folding methods for the language you use. Simply googling "vim folding" should bring up a number of options. Play around with the different options until you find a folding method you like.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.