From cb4db42227f99995cd3db26cee5d5a00e7169efe Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Rouby Date: Mon, 3 Mar 2025 11:45:37 +0100 Subject: [PATCH] git: Add script 'tags.sh' for emacs tags file. --- tags.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 tags.sh diff --git a/tags.sh b/tags.sh new file mode 100755 index 0000000..00cfebb --- /dev/null +++ b/tags.sh @@ -0,0 +1,9 @@ +#! /bin/sh + +# Command line to generate TAGS file for Emacs + +find . -name "*.py" -print | etags - + +# Command line to generate TAGS file for Vim + +# ctags -R .