blob: 084d084aa5a8fe1006226b8cc7dd9c7b14f51904 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
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!'"
)
|