Excerpts from Keyan's message of Thu Feb 18 12:05:13 +0100 2010: > hi, > > i use projects.vim heavily. since the last update of MacVim (vim 7.2-356) i > have the following problem. > > whenever i leave the project.vim window and re-enter, the content of the > window is automatically folded completely. i have no idea why or how to > suppress auto-folding.
a) prevent it: look for set fdm= lines (either in ftplugin/*.vim files or in the modeline. It could be set by autocommands as well b) how to unfold again: Add your own autocommand /fptlugin file which runs this command: normal zR How to get to know which line ? :h -V good luck quickest way: rename ~/.vim/ftplugin so that it does no longer exist. If Vim still folds your files no ftplugin file is causing it.. Marc Weber -- You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php
