Remove vifm and test all filetypes

This commit is contained in:
Adam Stankiewicz
2020-08-24 12:34:24 +02:00
parent 38ce8e9cb6
commit be8d039e02
14 changed files with 218 additions and 788 deletions

View File

@@ -2,18 +2,10 @@
set -e
vim -N --startuptime /dev/stdout -u <(
vim --clean -N -u <(
echo "filetype plugin indent on"
echo "syntax enable"
echo "let &rtp='$PWD,'.&rtp"
cat ftdetect/polyglot.vim | grep -E 'set ft=[a-z-]+' -o | sort | uniq | awk -F '=' '{ print $2 }' | while read ft; do
echo "try"
echo " enew"
echo " set ft=$ft"
echo "catch"
echo " echo v:exception"
echo " exec ':cq!'"
echo "endtry"
done
echo "source scripts/test_filetypes.vim"
echo "exec ':q!'"
)