bin/myctags @ 3d37ca22c5c5 bpollack/use-command-to-explicitly-call-ag-and-us-1442506830050
Use command to explicitly call ag, and use compound if block
| author | Benjamin Pollack <benjamin@bitquabit.com> |
|---|---|
| date | Thu, 17 Sep 2015 16:20:42 +0000 |
| parents | e6f6389e598f |
| children | 5896629d7867 |
#!/bin/bash set -e /usr/local/bin/ctags -R . && sed -i .bak -E -e '/^[^ ]+ [^ ]+.py .+v$/d' tags mv tags tags1 touch tags2 ffind '.js' --literal | xargs jsctags -f tags2 || echo > tags2 echo '!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/' > tags echo '!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/' >> tags cat tags1 tags2 | grep -Ev '^!' | grep -v 'anonymous_function' | sort >> tags rm tags1 tags2