Remove rego syntax, fixes #486

This commit is contained in:
Adam Stankiewicz
2020-04-30 16:49:01 +02:00
parent c7b5826d53
commit 0a7c62b3b2
7 changed files with 11 additions and 79 deletions

View File

@@ -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