I use something like this: 1,40 fo
but I think is not the most efficient way.
What's yours?
I use something like this: 1,40 fo
but I think is not the most efficient way.
What's yours?
Best folding method for vim for html: use haml instead. Best option for css: use sass instead.
I'm actually serious. They make it much more compact.
I use foldmethod=marker
and have mappings to enter <!-- {{{ -->
and <!-- }}} -->
where I want the fold to start and end. I put the start marker on the line with the opening block tag like:
<div id="topmenu"> <!-- {{{ -->
so when it's folded I immediately see what the fold contains without the need to add extra comment.
For CSS it's even easier, I just use foldmarker={,}
and all definitions are automagically folded showing me just a very clear list of all classes, tags and ids which I can open just when I need them. Actually all my CSS files have this line at the very end:
/* vim: set fdm=marker fmr={,}: */
You can also visually select the region you want to fold and press zf
if you prefer.
I flip between indent and marker with this in my vimrc..
let g:FoldMethod = 0
map <leader>ff :call ToggleFold()<cr>
fun! ToggleFold()
if g:FoldMethod == 0
exe 'set foldmethod=indent'
let g:FoldMethod = 1
else
exe 'set foldmethod=marker'
let g:FoldMethod = 0
endif
endfun
Indent works ok for most beautified html but I use marker for large declarative table of contents style folding of documents. Depending on who wrote the file, one will work better than the other so you need quick access to both.
I have used foldmethod=ignore
almost exclusively. However, my desire to have ignored lines default to the higher fold level of the above or below lines, instead of the lower, inspired the following:
" Default foldmethod
" Similar to fdm=indent, but lets blank and comment lines default high.
set fen fdm=expr fdi=
set foldexpr=EswaldFoldLevel(v:lnum)
function! EswaldFoldLevel(lnum)
let ignored = '^\s*\([#/*]\|$\)'
if getline(a:lnum) !~ ignored
" In the general case, just use the indent level.
" It would be nice if it didn't skip several levels...
return indent(a:lnum) / &sw
endif
let previndent = 0
let prevnum = a:lnum - 1
while prevnum > 0
if getline(prevnum) =~ ignored
let prevnum = prevnum - 1
else
let previndent = indent(prevnum) / &sw
break
endif
endwhile
let nextindent = 0
let maxline = line('$')
let nextnum = a:lnum + 1
while nextnum <= maxline
if getline(nextnum) =~ ignored
let nextnum = nextnum + 1
else
let nextindent = indent(nextnum) / &sw
break
endif
endwhile
return max([previndent, nextindent])
endfunction
(Sorry about the syntax highlighting...)
I use that as a custom plugin, letting individual filetypes override it. Python, for example, doesn't want to look at previous lines, just following ones.