From f0752b8560b71d80431a13fd12c5713eb979b474 Mon Sep 17 00:00:00 2001 From: Gilson Filho Date: Wed, 17 Oct 2012 16:15:39 -0300 Subject: [PATCH] Fix exists(grepadd) --- plugin/searchtasks.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/searchtasks.vim b/plugin/searchtasks.vim index ffe8a31..8f1d38b 100644 --- a/plugin/searchtasks.vim +++ b/plugin/searchtasks.vim @@ -42,7 +42,7 @@ function s:SearchTasksGrep(directory) endfunction " }}} -if has("grepadd"): +if has("grepadd") command -nargs=1 SearchTasksGrep call s:SearchTasksGrep('') endif command -nargs=1 SearchTasks call s:SearchTasks('')