aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2008-04-28 01:26:10 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2008-04-28 01:26:10 -0500
commita1bc3fec0a6a76a2d5cf729161f74944f44d4bf7 (patch)
tree5859b3a78f0873a1807b450cc023586aa4551b4d
parent4771ed09852d898f0bd0c9561eb2e1c0be855ce3 (diff)
downloadvim-textobj-a1bc3fec0a6a76a2d5cf729161f74944f44d4bf7.tar.gz
vim-textobj-a1bc3fec0a6a76a2d5cf729161f74944f44d4bf7.zip
add another fold
-rw-r--r--vimrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/vimrc b/vimrc
index 7ce90e4..fb8b700 100644
--- a/vimrc
+++ b/vimrc
@@ -318,6 +318,7 @@ function Textobj(char, callback)
exe 'xnoremap <silent>i'.a:char.' <Esc>:call Textobj_'.g:text_object_number.'(1, "v", v:prevcount, '.cbname.')<CR>'
endfunction
" }}}
+" Text objects {{{
" / for regex {{{
function Textobj_regex(inner, count)
let pos = getpos('.')
@@ -382,6 +383,7 @@ endfunction
call Textobj('f', 'Textobj_fold')
" }}}
" }}}
+" }}}
" Folding {{{
" Base {{{