diff options
author | NomisIV | 2023-10-13 15:08:27 +0000 |
---|---|---|
committer | GitHub | 2023-10-13 15:08:27 +0000 |
commit | 1ef7f24daec1602e39ea9b01b0e1a50fc6623155 (patch) | |
tree | 742da5e98a5dad79b0ce1e954bcde22611275543 /runtime | |
parent | 574f82130892d4a388bfdcce63fe2c4a190e479e (diff) |
Update purescript-tree-sitter grammar (#8527)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/queries/purescript/highlights.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/queries/purescript/highlights.scm b/runtime/queries/purescript/highlights.scm index 86deb48f..f559fd1e 100644 --- a/runtime/queries/purescript/highlights.scm +++ b/runtime/queries/purescript/highlights.scm @@ -5,7 +5,10 @@ (exp_negation) @constant.numeric.integer (exp_literal (float)) @constant.numeric.float (char) @constant.character - (string) @string + [ + (string) + (triple_quote_string) + ] @string (con_unit) @constant.builtin ; unit, as in () |