diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-02 19:46:21 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-02 19:46:34 -0400 |
commit | d827a750f71281faa28e497ef40ada645789566f (patch) | |
tree | 905b201c4b31c1b74a1e9baf2bdda4cd607e2346 /runtime | |
parent | cdd8540a20e2dbd2288b254a412ad8fa7d4bfbc8 (diff) | |
download | rneovim-d827a750f71281faa28e497ef40ada645789566f.tar.gz rneovim-d827a750f71281faa28e497ef40ada645789566f.tar.bz2 rneovim-d827a750f71281faa28e497ef40ada645789566f.zip |
vim-patch:8.1.1761: filetype "vuejs" causes problems for some users
Problem: Filetype "vuejs" causes problems for some users.
Solution: Rename to "vue".
https://github.com/vim/vim/commit/4248111497ab78f45d3d48576740949778a1e76b
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 6922565192..600d323bbd 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -706,6 +706,9 @@ au BufNewFile,BufRead *.html,*.htm,*.shtml,*.stm call dist#ft#FThtml() " Vue.js Single File Component au BufNewFile,BufRead *.vue setf vuejs +" Vue.js Single File Component +au BufNewFile,BufRead *.vue setf vue + " HTML with Ruby - eRuby au BufNewFile,BufRead *.erb,*.rhtml setf eruby |