From 76f871d52bf5bdb27c29424c3ce67f071104a450 Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Thu, 27 Oct 2022 11:23:03 -0700 Subject: [PATCH] ctags all the languages --- .git_templates/hooks/ctags | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.git_templates/hooks/ctags b/.git_templates/hooks/ctags index 1ac991e..44cd3be 100755 --- a/.git_templates/hooks/ctags +++ b/.git_templates/hooks/ctags @@ -4,5 +4,5 @@ PATH="/usr/local/bin:$PATH" dir="`git rev-parse --git-dir`" trap 'rm -f "$dir/$$.tags"' EXIT git ls-files | \ - ctags --tag-relative -L - -f"$dir/$$.tags" --languages=-javascript,sql + ctags --tag-relative -L - -f"$dir/$$.tags" # --languages=-javascript,sql mv "$dir/$$.tags" "$dir/tags"