diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2019-07-01 16:26:25 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2019-07-01 16:26:25 +0200 |
commit | 3ddca5da461ebfaa82104f82e3cbf19d1c326ade (patch) | |
tree | f88d65bc8024418f6074d223da0f35dd7ea17dcf /ftdetect | |
parent | 140430ffb73d5e0851ba2df2abd29106b1677687 (diff) | |
download | vim-polyglot-3ddca5da461ebfaa82104f82e3cbf19d1c326ade.tar.gz vim-polyglot-3ddca5da461ebfaa82104f82e3cbf19d1c326ade.zip |
Remove rego, fixes #415
Diffstat (limited to 'ftdetect')
-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 073ef3a5..83a372fc 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -1107,17 +1107,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 |