diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-03-02 01:24:08 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-03-02 01:24:08 +0100 |
commit | 43ecbfae50fe8dc2a64039af2ee04249e8836cd0 (patch) | |
tree | af39739ca1160258e6a8e161418cfabf154cf635 /build | |
parent | f77702c090d99e171250c906d54d75cb8e1306ee (diff) | |
download | vim-polyglot-43ecbfae50fe8dc2a64039af2ee04249e8836cd0.tar.gz vim-polyglot-43ecbfae50fe8dc2a64039af2ee04249e8836cd0.zip |
Add ctags files, fixes #445
Diffstat (limited to 'build')
-rwxr-xr-x | build | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 } |