From 43ecbfae50fe8dc2a64039af2ee04249e8836cd0 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Mon, 2 Mar 2020 01:24:08 +0100 Subject: Add ctags files, fixes #445 --- build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build') diff --git a/build b/build index efbd56ca..cf38cd90 100755 --- a/build +++ b/build @@ -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 } -- cgit v1.2.3