From ce68a5b2e23db20c4ee9c01fb810ccdac1c7a430 Mon Sep 17 00:00:00 2001 From: Kevin Date: Sat, 5 Apr 2014 04:57:08 -0400 Subject: [PATCH] removed the echo tag I had on the tags generation command for testing --- gentags | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gentags b/gentags index 5c9e3fc..c662fed 100755 --- a/gentags +++ b/gentags @@ -1,3 +1,3 @@ #!/usr/bin/env bash -[[ `type -P ctags` ]] && echo ctags -R -f ~/.vim/tags /usr/include /usr/local/include $@ || echo "Can't find the ctags binary in $PATH" +[[ `type -P ctags` ]] && ctags -R -f ~/.vim/tags /usr/include /usr/local/include $@ || echo "Can't find the ctags binary in $PATH"