summaryrefslogtreecommitdiffstats
path: root/vim/plugin
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2008-12-23 02:18:54 -0500
committerdoy <doy@tozt.net>2008-12-23 02:18:54 -0500
commit944f2337c86b9b77f02de85bb584cb8d35793f84 (patch)
tree8af6931ab5f10ca352e8a5fba0f0d5f6c6a8f7b9 /vim/plugin
parent41505d10af0da12ad88795ecba7294861699514d (diff)
downloadconf-944f2337c86b9b77f02de85bb584cb8d35793f84.tar.gz
conf-944f2337c86b9b77f02de85bb584cb8d35793f84.zip
make textobj creation into config again, since the functions don't get defined until after the vimrc file is read (i think?)
Diffstat (limited to 'vim/plugin')
-rw-r--r--vim/plugin/textobj.vim5
1 files changed, 5 insertions, 0 deletions
diff --git a/vim/plugin/textobj.vim b/vim/plugin/textobj.vim
index a9f8624..bd85680 100644
--- a/vim/plugin/textobj.vim
+++ b/vim/plugin/textobj.vim
@@ -231,3 +231,8 @@ function Textobj_arg(inner, count)
endfunction
" }}}
" }}}
+" Text object loading {{{
+for object in g:Textobj_defs
+ call call('Textobj', object)
+endfor
+" }}}