aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/vue.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-09-06 18:21:12 -0700
committerJustin M. Keyes <justinkz@gmail.com>2019-09-06 18:30:35 -0700
commitc044ea09094ebd50c48f4869473e31cb67fbedb0 (patch)
tree8aff4a1092307edfacf4c25c7d4bdf978f245165 /runtime/syntax/vue.vim
parent158b78062e9daa65203b4591dae733dd6c11ad2c (diff)
downloadrneovim-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.vim14
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