commit a0cf87dfccb78bde1b8709ca8e4c0b54e9b4dd14 parent 0f82f3827f12369d9467997fd85684975b6dbc7a Author: Alex Balgavy <alex@balgavy.eu> Date: Thu, 15 Jul 2021 11:06:23 +0200 git: make sure ctags hook also generates etags Diffstat:
M | git/git_template/hooks/ctags | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/git/git_template/hooks/ctags b/git/git_template/hooks/ctags @@ -10,5 +10,5 @@ mv "$dir/$$.tags" "$dir/tags" # emacs etags git ls-files | \ - ctags --tag-relative=yes -L - -f "$dir/$$.tags" + ctags -e --tag-relative=yes -L - -f "$dir/$$.tags" mv "$dir/$$.tags" "$dir/etags"