Remove unused ctags param; don't tag filenames
David Blume

David Blume commited on 2017-12-31 00:57:22
Showing 1 changed files, with 2 additions and 2 deletions.

... ...
@@ -1,7 +1,7 @@
1 1
 #/bin/bash
2 2
 set -eu -o pipefail # See: https://sipb.mit.edu/doc/safe-shell/
3 3
 
4
-ctags -n --if0=yes --langmap=c++:+.inl --c++-kinds=+p --file-tags=yes -R --extra=fq \
4
+ctags -n --if0=yes --langmap=c++:+.inl --c++-kinds=+p -R --extra=q \
5 5
     --exclude=.git \
6 6
     --exclude=obj \
7 7
     --exclude=lib \
... ...
@@ -16,7 +16,7 @@ find . -mindepth 1 \
16 16
     -or -type d -print | while read i
17 17
 do
18 18
     pushd "$i" 1> /dev/null
19
-    ctags -n --if0=yes --langmap=c++:+.inl --c++-kinds=+p --file-tags=yes -R --extra=fq \
19
+    ctags -n --if0=yes --langmap=c++:+.inl --c++-kinds=+p -R --extra=q \
20 20
         --exclude=obj \
21 21
         --exclude='*generated/*'
22 22
     popd 1> /dev/null
23 23