diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-04-30 16:49:01 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-04-30 16:49:01 +0200 |
commit | 0a7c62b3b22a75f91245a718c1409e4216ae61c8 (patch) | |
tree | 0aa7ff145cf6d7444204350ba97d8c57d404cb5c /ftdetect | |
parent | c7b5826d53f3f4fe31e8168e1d8c6d7b19e60f4b (diff) | |
download | vim-polyglot-0a7c62b3b22a75f91245a718c1409e4216ae61c8.tar.gz vim-polyglot-0a7c62b3b22a75f91245a718c1409e4216ae61c8.zip |
Remove rego syntax, fixes #486
Diffstat (limited to '')
-rw-r--r-- | ftdetect/polyglot.vim | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 65fb0cd5..40c33941 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -1232,17 +1232,6 @@ au BufNewFile,BufRead .merlin set ft=merlin augroup end endif -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'rego') == -1 - augroup filetypedetect - " rego, from rego.vim in tsandall/vim-rego -autocmd BufRead,BufNewFile *.rego set filetype=rego - -" Use # as a comment prefix -setlocal comments=b:#,fb:- -setlocal commentstring=#\ %s - augroup end -endif - if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ruby') == -1 augroup filetypedetect " ruby, from ruby.vim in vim-ruby/vim-ruby |