Add access_call fontification to elixir-ts-mode
* lisp/progmodes/elixir-ts-mode.el (elixir-ts--font-lock-settings): Add access_call queries to the elixir-variable feature (bug#67246).
This commit is contained in:
parent
a45e1237b2
commit
c1cdbb9872
1 changed files with 3 additions and 1 deletions
|
@ -546,7 +546,9 @@
|
|||
(body (identifier) @font-lock-variable-name-face)
|
||||
(unary_operator operand: (identifier) @font-lock-variable-name-face)
|
||||
(interpolation (identifier) @font-lock-variable-name-face)
|
||||
(do_block (identifier) @font-lock-variable-name-face))
|
||||
(do_block (identifier) @font-lock-variable-name-face)
|
||||
(access_call target: (identifier) @font-lock-variable-name-face)
|
||||
(access_call "[" key: (identifier) @font-lock-variable-name-face "]"))
|
||||
|
||||
:language 'elixir
|
||||
:feature 'elixir-builtin
|
||||
|
|
Loading…
Add table
Reference in a new issue