Add string escape high-lighting
This commit is contained in:
parent
47eb986835
commit
c48624c0f3
|
@ -33,6 +33,7 @@
|
|||
(nil_literal) @constant.builtin
|
||||
(integer_literal) @number
|
||||
(string_literal) @string
|
||||
(escape_sequence) @string.escape
|
||||
; }}}
|
||||
|
||||
; Operators {{{
|
||||
|
|
|
@ -2,5 +2,7 @@ nil
|
|||
/* <- constant.builtin */
|
||||
42
|
||||
/* <- number */
|
||||
"Hello World!"
|
||||
/* <- string */
|
||||
"Hello World!\n"
|
||||
/* <- string
|
||||
^ string.escape
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue