diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2021-01-01 17:18:25 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2021-01-01 17:18:25 +0100 |
commit | 2ab0b0a56a7bd1d39060f3def3c0843bb4d3a095 (patch) | |
tree | 29f0cadf91f7a86879818479b45726c97bc5ddbb /ftdetect/polyglot.vim | |
parent | 37bc36ac42c00757cf06ea271f8206aec50632a2 (diff) | |
download | vim-polyglot-2ab0b0a56a7bd1d39060f3def3c0843bb4d3a095.tar.gz vim-polyglot-2ab0b0a56a7bd1d39060f3def3c0843bb4d3a095.zip |
Add cson extension to coffeescript, closes #639
Co-authored-by: Collin Styles <collin.styles@mycase.com>
Diffstat (limited to 'ftdetect/polyglot.vim')
-rw-r--r-- | ftdetect/polyglot.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 94e9b28b..9e4edbed 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -2441,7 +2441,7 @@ if !has_key(g:polyglot_is_disabled, 'cryptol') endif if !has_key(g:polyglot_is_disabled, 'coffee-script') - au BufNewFile,BufRead *._coffee,*.cake,*.cjsx,*.coffee,*.coffeekup,*.iced,Cakefile setf coffee + au BufNewFile,BufRead *._coffee,*.cake,*.cjsx,*.coffee,*.coffeekup,*.cson,*.iced,Cakefile setf coffee au BufNewFile,BufRead *.coffee.md,*.litcoffee setf litcoffee endif |