Tagged Questions
6
votes
4answers
735 views
Code folding is not saved in my vimrc
I added the following code to my .vimrc:
" save and restore folds when a file is closed and re-opened
autocmd BufWinLeave *.* mkview
autocmd BufWinEnter *.* silent loadview
HTML and CSS documents ...
3
votes
4answers
1k views
What's your favorite folding method (or secret techique) in Vim for HTML, Javascript and CSS?
I use something like this: 1,40 fo but I think is not the most efficient way.
What's yours?
2
votes
2answers
307 views
How can I use Vim syntax files to collapse single line comments into one region?
I'm putting together a syntax for editing Java Manifest files (at github, if anyone's interested). I'm trying to collapse multiple single-line-comments (which I'm matching at the moment with syntax ...
1
vote
1answer
42 views
gvim automatic show foldcolumn when there are folds in a file
I know you can use
set foldcolumn=1
to enable fold column
but is there a way to automatic turn it on only when there are folds exist in the file?
1
vote
1answer
103 views
Unable to edit a title without opening a fold in Vim
Let's assume you have a cursor at a closed fold as in the picture.
How can you edit the title of SMALLAPPS without opening the fold in Vim?
1
vote
4answers
1k views
How can I automatically fold a long C code in Vim?
I regularly run into C-codes without folding. It is irritating to read them if there is no folding, particularly with long files. How can I fold them?
0
votes
1answer
47 views
How to fold all paragraph in vim
I know "zfap" command, and it can fold a paragraph.
But how can I fold all paragraph? Is there a magic command can do this job?
I search "global" command, but "global" seems to work only for line ...
0
votes
1answer
211 views
How to fold/unfold HTML tags with Vim
Is there some plugin to fold HTML tags in Vim?
Or there is another way to setup a shortcut to fold or unfold html tags?
I would like to fold/unfold html tags just like I do with indentation folding.
...