diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2016-01-28 18:14:32 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2016-01-28 18:14:32 +0100 |
commit | b0823d20685d0c03e70de3abfc85d79a8188d292 (patch) | |
tree | 3bda08e95f18383a7b1b34d92a4732335ac04647 /ftdetect/polyglot.vim | |
parent | b4a6290b42701b09069e052d1c3c1aa904752254 (diff) | |
download | vim-polyglot-2.7.2.tar.gz vim-polyglot-2.7.2.zip |
Change twig provider, close #102v2.7.2
Diffstat (limited to 'ftdetect/polyglot.vim')
-rw-r--r-- | ftdetect/polyglot.vim | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 52b1768d..dfc9c981 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -450,11 +450,6 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'toml') == -1 autocmd BufNewFile,BufRead *.toml set filetype=toml autocmd BufNewFile,BufRead Cargo.lock set filetype=toml endif -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'twig') == -1 - -autocmd BufNewFile,BufRead *.twig set filetype=twig -autocmd BufNewFile,BufRead *.html.twig set filetype=html.twig -endif if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1 autocmd BufNewFile,BufRead *.ts,*.tsx setlocal filetype=typescript |