'folding'에 해당되는 글 1건

  1. 2008/02/26 Tip #108: Toggle a fold with a single keystroke

Tip #108: Toggle a fold with a single keystroke

View Comments

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
2008/02/26 11:48 2008/02/26 11:48

댓글0 Comments (+add yours?)

트랙백0 Tracbacks (+view to the desc.)

Newer Entries Older Entries