Tip #108: Toggle a fold with a single keystroke

개발/vim 2008/02/26 11:48

tip karma   Rating 90/41, Viewed by 5472

created:  September 6, 2001 2:51     complexity:  intermediate
author:  Max Ischenko     as of Vim:  6.0

When viewing/editing a folded file, it is often needed to inspect/close some fold.
To speed up these operation use the following (put in your $HOME/.vimrc):

" Toggle fold state between closed and opened.
"
" If there is no fold at current line, just moves forward.
" If it is present, reverse it's state.
fun! ToggleFold()
if foldlevel('.') == 0
normal! l
else
if foldclosed('.') < 0
. foldclose
else
. foldopen
endif
endif
" Clear status line
echo
endfun

" Map this function to Space key.
noremap <space> :call ToggleFold()<CR>


See :help folding for more information about folding.


vim.org에서 내가 가장 좋아하는 팁..
http://www.vim.org/tips/tip.php?tip_id=108


 

크리에이티브 커먼즈 라이선스
Creative Commons License
tags : , ,
Trackback 0 : Comment 0
◀ PREV : [1] : ... [31] : [32] : [33] : [34] : [35] : [36] : [37] : [38] : [39] : ... [41] : NEXT ▶