aboutsummaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc8
1 files changed, 5 insertions, 3 deletions
diff --git a/vimrc b/vimrc
index fcff942..654e864 100644
--- a/vimrc
+++ b/vimrc
@@ -280,9 +280,11 @@ if file_readable(s:session_file) && expand("%:.") !~ '^/'
endif
" }}}
" Textobj {{{
-call Textobj('/', "Textobj_paired", '/')
-call Textobj('f', "Textobj_fold")
-call Textobj(',', "Textobj_arg")
+let g:Textobj_defs = [
+ \['/', 'Textobj_paired', '/'],
+ \['f', 'Textobj_fold'],
+ \[',', 'Textobj_arg'],
+\]
" }}}
" }}}