diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-08-18 23:22:09 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-08-18 23:22:09 +0200 |
commit | 7e38f4288a4f7199240d8a8fce87c8d0cc0198c3 (patch) | |
tree | 021cd6f6c9e609997332a176e5017597b62ed2d8 /ftdetect | |
parent | e521ba3ae205b2c79df9030a3db767405caf0457 (diff) | |
download | vim-polyglot-7e38f4288a4f7199240d8a8fce87c8d0cc0198c3.tar.gz vim-polyglot-7e38f4288a4f7199240d8a8fce87c8d0cc0198c3.zip |
Add improved sql syntax, closes #505
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 028b8eb4..5909463b 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -1151,6 +1151,10 @@ if index(g:polyglot_disabled, 'fennel') == -1 au BufNewFile,BufRead *.fnl set ft=fennel endif +if index(g:polyglot_disabled, 'mcfunction') == -1 + au BufNewFile,BufRead *.mcfunction set ft=mcfunction +endif + " restore Vi compatibility settings let &cpo = s:cpo_save unlet s:cpo_save
\ No newline at end of file |