Add ctags files, fixes #445

This commit is contained in:
Adam Stankiewicz
2020-03-02 01:24:08 +01:00
parent f77702c090
commit 43ecbfae50
8 changed files with 333 additions and 8 deletions

4
build
View File

@@ -2,7 +2,7 @@
set -E
DIRS="syntax indent compiler autoload ftplugin after/syntax after/indent after/ftplugin"
DIRS="syntax indent compiler autoload ftplugin ctags after/syntax after/indent after/ftplugin"
# shellcheck disable=SC2034
DIRS_BASIC="syntax compiler indent after/syntax after/indent"
# shellcheck disable=SC2034
@@ -105,7 +105,7 @@ EOF
}
copy_dir() {
find "$1/$2" \( -name '*.vim' -o -name '*.vital' \) -print0 | while read -r -d $'\0' file; do
find "$1/$2" \( -name '*.vim' -o -name '*.vital' -o -name '*.ctags' \) -print0 | while read -r -d $'\0' file; do
copy_file "$1" "$file" "$3"
done
}