diff options
-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>) |