Tip #108: Toggle a fold with a single keystroke

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

Posted by dino

2008/02/26 11:48 2008/02/26 11:48
, ,
Response
367 Trackbacks , No Comment
RSS :
http://corpseplay.com/rss/response/8


블로그 이미지

시체놀이닷컴

- dino

Notices

Site Stats

Total hits:
49301
Today:
105
Yesterday:
108