diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-09-06 18:21:12 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-09-06 18:30:35 -0700 |
commit | c044ea09094ebd50c48f4869473e31cb67fbedb0 (patch) | |
tree | 8aff4a1092307edfacf4c25c7d4bdf978f245165 /runtime/syntax/vue.vim | |
parent | 158b78062e9daa65203b4591dae733dd6c11ad2c (diff) | |
download | rneovim-c044ea09094ebd50c48f4869473e31cb67fbedb0.tar.gz rneovim-c044ea09094ebd50c48f4869473e31cb67fbedb0.tar.bz2 rneovim-c044ea09094ebd50c48f4869473e31cb67fbedb0.zip |
vim-patch:088e8e344352
Update runtime files.
https://github.com/vim/vim/commit/088e8e3443520dec91a384081e66445a104810bb
Diffstat (limited to 'runtime/syntax/vue.vim')
-rw-r--r-- | runtime/syntax/vue.vim | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/runtime/syntax/vue.vim b/runtime/syntax/vue.vim new file mode 100644 index 0000000000..bad0e26c42 --- /dev/null +++ b/runtime/syntax/vue.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 |