diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-03-02 00:43:28 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-03-02 00:43:28 +0100 |
commit | aee260a301b887024caea286c4683e39f1a6217d (patch) | |
tree | 86d3b48dd9665067c9575ea91fb4ee25a40b9be2 /ftdetect | |
parent | 6b540d7db030e4110aa3a31dd06c6c41387444db (diff) | |
download | vim-polyglot-aee260a301b887024caea286c4683e39f1a6217d.tar.gz vim-polyglot-aee260a301b887024caea286c4683e39f1a6217d.zip |
Remove jasmine syntax, fixes #464
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index d896692b..2069098a 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -660,13 +660,6 @@ autocmd BufNewFile,BufRead,StdinReadPost * augroup end endif -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jasmine') == -1 - augroup filetypedetect - " jasmine, from jasmine.vim in glanotte/vim-jasmine -autocmd BufNewFile,BufRead *Spec.js,*_spec.js set filetype=jasmine.javascript syntax=jasmine - augroup end -endif - if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'javascript') == -1 augroup filetypedetect " javascript, from flow.vim in pangloss/vim-javascript:_JAVASCRIPT |