diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-08-25 14:26:38 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-08-25 14:26:38 +0200 |
commit | 080b8cdc603b059db2d9e6f56e3f724418f9366a (patch) | |
tree | 5543d38bca963ee1597c619b70ff7d7f87a751d0 /scripts/test | |
parent | e47af23f64e4c02ab85080e94c23e57b3f66ecda (diff) | |
download | vim-polyglot-080b8cdc603b059db2d9e6f56e3f724418f9366a.tar.gz vim-polyglot-080b8cdc603b059db2d9e6f56e3f724418f9366a.zip |
Fix ansible ftdetect
Diffstat (limited to 'scripts/test')
-rwxr-xr-x | scripts/test | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/scripts/test b/scripts/test index 084d084a..88a2e973 100755 --- a/scripts/test +++ b/scripts/test @@ -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!' +" |