xref: /vim-8.2.3635/runtime/syntax/vue.vim (revision 088e8e34)
1" Vim syntax file
2" Language:	Vue.js Single File Component
3" Maintainer:	Ralph Giles <[email protected]>
4" URL:		https://vuejs.org/v2/guide/single-file-components.html
5" Last Change:	2019 Jul 8
6
7" Quit if a syntax file was already loaded.
8if exists("b:current_syntax")
9  finish
10endif
11
12" We have a collection of html, css and javascript wrapped in
13" tags. The default HTML syntax highlight works well enough.
14runtime! syntax/html.vim
15