diff options
author | Teddy Wing | 2018-04-08 00:14:36 +0200 |
---|---|---|
committer | Teddy Wing | 2018-04-08 00:15:30 +0200 |
commit | feababe82edc183a20f5b410aff5f4dc21ab4d32 (patch) | |
tree | cfabad800f8b6cc37caf512d36989711be6feea2 | |
parent | 8868b071355638d3a8df26249216f46d8709b91d (diff) | |
download | vim-tabs-grep-feababe82edc183a20f5b410aff5f4dc21ab4d32.tar.bz2 |
Only load the plugin once
-rw-r--r-- | plugin/tabs_grep.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugin/tabs_grep.vim b/plugin/tabs_grep.vim index 34da6cf..1232f62 100644 --- a/plugin/tabs_grep.vim +++ b/plugin/tabs_grep.vim @@ -1 +1,6 @@ +if exists('g:loaded_tabs_grep') + finish +endif +let g:loaded_tabs_grep = 1 + command! -nargs=1 TabsGrep :call tabs_grep#TabsGrep(<f-args>) |