diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-09-07 19:22:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-07 19:22:33 -0700 |
commit | dd7355358edc40734afcce695432756859377eb8 (patch) | |
tree | ca104883444d0e6f183799860baf47fdc94369c0 /runtime/syntax/vue.vim | |
parent | 6692c0958f476456b59cd9f36b35b1c5b3202145 (diff) | |
parent | 8f2557ad197afbb46f44bb84b6214c6760084bd1 (diff) | |
download | rneovim-dd7355358edc40734afcce695432756859377eb8.tar.gz rneovim-dd7355358edc40734afcce695432756859377eb8.tar.bz2 rneovim-dd7355358edc40734afcce695432756859377eb8.zip |
Merge #10962 from justinmk/vim-088e8e344352
vim-patch: runtime updates
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 |