diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-12-29 20:17:10 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-12-29 20:18:29 +0100 |
commit | 45f2f9497524486bfc3f7651c1fb2111737aa206 (patch) | |
tree | 695cf600b3838ae5705b7800d3f8e8d024cbc504 /ftdetect | |
parent | cec808bc19656357c78d222e7ec279e39488a4f9 (diff) | |
download | vim-polyglot-45f2f9497524486bfc3f7651c1fb2111737aa206.tar.gz vim-polyglot-45f2f9497524486bfc3f7651c1fb2111737aa206.zip |
Add mint-language, closes #653
Co-authored-by: NICHTJ3 <nicholsontrent@gmail.com>
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 44b5871d..a8a5c319 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -142,6 +142,10 @@ set cpo&vim " DO NOT EDIT CODE BELOW, IT IS GENERATED WITH MAKEFILE +if !has_key(g:polyglot_is_disabled, 'mint') + au BufNewFile,BufRead *.mint setf mint +endif + if !has_key(g:polyglot_is_disabled, 'context') au BufNewFile,BufRead *.mkii,*.mkiv,*.mkvi setf context endif |