diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-02 07:08:49 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-02 16:20:22 +0200 |
commit | 1e4e890a764dfef1db7046ff24d43241c4054925 (patch) | |
tree | 6c968034de0d5e20e8e6d5d715839f6f9d19a7e5 /runtime/syntax/vuejs.vim | |
parent | 0d852bdc69b0293695c391e316c65183b88b83ef (diff) | |
download | rneovim-1e4e890a764dfef1db7046ff24d43241c4054925.tar.gz rneovim-1e4e890a764dfef1db7046ff24d43241c4054925.tar.bz2 rneovim-1e4e890a764dfef1db7046ff24d43241c4054925.zip |
vim-patch:396e829fa355
Update runtime files
https://github.com/vim/vim/commit/396e829fa355ebc92a618ef18266a3fed71b7042
Diffstat (limited to 'runtime/syntax/vuejs.vim')
-rw-r--r-- | runtime/syntax/vuejs.vim | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/runtime/syntax/vuejs.vim b/runtime/syntax/vuejs.vim new file mode 100644 index 0000000000..bad0e26c42 --- /dev/null +++ b/runtime/syntax/vuejs.vim @@ -0,0 +1,14 @@ +" Vim syntax file +" Language: Vue.js Single File Component +" Maintainer: Ralph Giles <giles@thaumas.net> +" URL: https://vuejs.org/v2/guide/single-file-components.html +" Last Change: 2019 Jul 8 + +" Quit if a syntax file was already loaded. +if exists("b:current_syntax") + finish +endif + +" We have a collection of html, css and javascript wrapped in +" tags. The default HTML syntax highlight works well enough. +runtime! syntax/html.vim |