Add 'self' built-in variable high-lighting

This commit is contained in:
Bruno BELANYI 2022-06-04 21:38:21 +02:00
parent acb5765591
commit b1c2da4cb4
3 changed files with 10 additions and 1 deletions

View file

@ -7,6 +7,10 @@
((type_identifier) @type.builtin
(#match? @type.builtin "^(int|string|Object)$")
(#is-not? local))
((identifier) @variable.builtin
(#match? @variable.builtin "^self$")
(#is-not? local))
; }}}
; Keywords {{{