diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2014-12-11 23:09:07 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2014-12-11 23:09:07 +0100 |
commit | 03dd22587ab71f60f8297dfe2c1e448016de4ee0 (patch) | |
tree | de04d2889c57816540342ad41498226c9fe99d75 /ftdetect | |
parent | bbc6be1099dee66a69dd4d44e029c4c2dc37aee0 (diff) | |
download | vim-polyglot-03dd22587ab71f60f8297dfe2c1e448016de4ee0.tar.gz vim-polyglot-03dd22587ab71f60f8297dfe2c1e448016de4ee0.zip |
Add vala support, closes #41
Diffstat (limited to '')
-rw-r--r-- | ftdetect/polyglot.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 042316e3..eaf105bd 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -201,3 +201,5 @@ autocmd BufNewFile,BufRead *.toml set filetype=toml autocmd BufNewFile,BufRead *.twig set filetype=twig autocmd BufNewFile,BufRead *.html.twig set filetype=html.twig autocmd BufNewFile,BufRead *.ts setlocal filetype=typescript +autocmd BufRead *.vala,*.vapi set efm=%f:%l.%c-%[%^:]%#:\ %t%[%^:]%#:\ %m +au BufRead,BufNewFile *.vala,*.vapi setfiletype vala |