mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
small fix syntax highlighting in vue.js files (#11706)
* small fix syntax highlighting in vue.js files * changes after review by mikedavis
This commit is contained in:
parent
5717aa8e35
commit
274c660a0e
@ -6,9 +6,13 @@
|
|||||||
|
|
||||||
(attribute
|
(attribute
|
||||||
(attribute_name) @attribute
|
(attribute_name) @attribute
|
||||||
(quoted_attribute_value
|
[(attribute_value) (quoted_attribute_value)]? @string)
|
||||||
(attribute_value) @string)
|
|
||||||
)
|
(directive_attribute
|
||||||
|
(directive_name) @attribute
|
||||||
|
(directive_argument)? @attribute
|
||||||
|
(directive_modifiers)? @attribute
|
||||||
|
[(attribute_value) (quoted_attribute_value)]? @string)
|
||||||
|
|
||||||
(comment) @comment
|
(comment) @comment
|
||||||
|
|
||||||
@ -18,4 +22,7 @@
|
|||||||
"</"
|
"</"
|
||||||
"{{"
|
"{{"
|
||||||
"}}"
|
"}}"
|
||||||
|
"/>"
|
||||||
] @punctuation.bracket
|
] @punctuation.bracket
|
||||||
|
"=" @punctuation.delimiter
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user