From c8b350432ca844d2771632d74c5d1175cffd57eb Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Wed, 20 May 2020 19:35:10 +0200 Subject: Remove generation of ftdetect from build --- build | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'build') diff --git a/build b/build index 60745b09..26a7d2cd 100755 --- a/build +++ b/build @@ -37,8 +37,6 @@ download() { extract() { echo - cat config.vim >> tmp/polyglot.vim - for pack in $1; do name="$(cut -d ':' -f 1 <<<"$pack")" path="$(cut -d ':' -f 2 <<<"$pack")" @@ -66,32 +64,8 @@ extract() { fi output "${subdirs##, })"$'\n' - - if (echo "julia coffee-script elixir fish git plantuml scala swift jinja fsharp" | grep -qF "$name"); then - echo "Skipping ftdetect installation of $name" >&2 - continue - fi - - ftdetect=("${dir}${subtree:-/}ftdetect"/*) - if [ "$ftdetect" ] && [ "$ftdetect" != "${dir}${subtree:-/}ftdetect/*" ]; then - IFS=$'\n' ftdetect=($(sort -V <<< "${ftdetect[*]}")); unset IFS - for f in "${ftdetect[@]}"; do - cat <> tmp/polyglot.vim -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, '${pack%%:*}') == -1 - augroup filetypedetect - " ${pack%%:*}, from ${f##*/ftdetect/} in ${pack#*:} -$(cat "${f}") - augroup end -endif - -EOF - done - fi - done - mv tmp/polyglot.vim ftdetect/ - for pack in $1; do name="$(cut -d ':' -f 1 <<<"$pack")" path="$(cut -d ':' -f 2 <<<"$pack")" -- cgit v1.2.3