Fix ansible ftdetect

This commit is contained in:
Adam Stankiewicz
2020-08-25 14:26:38 +02:00
parent e47af23f64
commit 080b8cdc60
4 changed files with 33 additions and 17 deletions

View File

@@ -2,10 +2,12 @@
set -e
vim --clean -N -u <(
echo "filetype plugin indent on"
echo "syntax enable"
echo "let &rtp='$PWD,'.&rtp"
echo "source scripts/test_filetypes.vim"
echo "exec ':q!'"
)
vim --clean -N --cmd "
filetype plugin indent on
syntax enable
let &rtp='$PWD,'.&rtp
source ftdetect/polyglot.vim
source scripts/test_extensions.vim
source scripts/test_filetypes.vim
exec ':q!'
"