Add string escape high-lighting

This commit is contained in:
Bruno BELANYI 2022-06-03 12:03:10 +02:00
parent 47eb986835
commit c48624c0f3
2 changed files with 5 additions and 2 deletions

View file

@ -33,6 +33,7 @@
(nil_literal) @constant.builtin
(integer_literal) @number
(string_literal) @string
(escape_sequence) @string.escape
; }}}
; Operators {{{

View file

@ -2,5 +2,7 @@ nil
/* <- constant.builtin */
42
/* <- number */
"Hello World!"
/* <- string */
"Hello World!\n"
/* <- string
^ string.escape
*/