aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/vue/highlights.scm
diff options
context:
space:
mode:
authorThomas Wehmöller2021-10-10 13:09:17 +0000
committerGitHub2021-10-10 13:09:17 +0000
commita7f49fa56fecd7f44efca7e6074e5cd9e5d91c92 (patch)
treec79906c7e3526dd6265e630ddcb1549c63db09bc /runtime/queries/vue/highlights.scm
parent4260b31ec059ffa2207f8f2541af1c3996b00cf9 (diff)
Add Vue tree sitter grammar (#787)
* ✨ Add vue tree sitter support * Update .gitmodules Co-authored-by: Blaž Hrastnik <blaz@mxxn.io>
Diffstat (limited to 'runtime/queries/vue/highlights.scm')
-rw-r--r--runtime/queries/vue/highlights.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/runtime/queries/vue/highlights.scm b/runtime/queries/vue/highlights.scm
new file mode 100644
index 00000000..f90ae429
--- /dev/null
+++ b/runtime/queries/vue/highlights.scm
@@ -0,0 +1,21 @@
+(tag_name) @tag
+(end_tag) @tag
+
+(directive_name) @keyword
+(directive_argument) @constant
+
+(attribute
+ (attribute_name) @attribute
+ (quoted_attribute_value
+ (attribute_value) @string)
+)
+
+(comment) @comment
+
+[
+ "<"
+ ">"
+ "</"
+ "{{"
+ "}}"
+] @punctuation.bracket \ No newline at end of file