You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
226 B

#!/bin/sh
# Overrides for --exclude and --languages can be put into .ctags.d/*.ctags
set -e
PATH="/opt/homebrew/bin:$PATH"
trap 'rm -f "$$.tags"' EXIT
git ls-files | ctags --tag-relative -L - -f"$$.tags"
mv "$$.tags" "tags"