티스토리 뷰
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
- Total
- Today
- Yesterday