aboutsummaryrefslogtreecommitdiffstats
path: root/vim/plugin/textobj.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/plugin/textobj.vim')
-rw-r--r--vim/plugin/textobj.vim11
1 files changed, 0 insertions, 11 deletions
diff --git a/vim/plugin/textobj.vim b/vim/plugin/textobj.vim
index fbf9a4a..a603443 100644
--- a/vim/plugin/textobj.vim
+++ b/vim/plugin/textobj.vim
@@ -231,14 +231,3 @@ function Textobj_arg(inner, count)
endfunction
" }}}
" }}}
-" Text object creation {{{
-if exists("g:Textobj_regex_enable") && g:Textobj_regex_enable
- call Textobj('/', "<SID>textobj_regex")
-endif
-if exists("g:Textobj_fold_enable") && g:Textobj_fold_enable
- call Textobj('f', "<SID>textobj_fold")
-endif
-if exists("g:Textobj_arg_enable") && g:Textobj_arg_enable
- call Textobj(',', "<SID>textobj_arg")
-endif
-" }}}