Skip to content

Commit

Permalink
Fix fontification for block identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
wkirschbaum committed Aug 20, 2024
1 parent b08d399 commit b35c983
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions elixir-ts-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,10 @@ This variable is obsolete. Use elixir-ts-sigil-name-face instead."
(unary_operator operand: (identifier) @font-lock-variable-name-face)
(interpolation (identifier) @font-lock-variable-name-face)
(do_block (identifier) @font-lock-variable-name-face)
(rescue_block (identifier) @font-lock-variable-use-face)
(catch_block (identifier) @font-lock-variable-use-face)
(else_block (identifier) @font-lock-variable-use-face)
(after_block (identifier) @font-lock-variable-use-face)
(access_call target: (identifier) @font-lock-variable-name-face)
(access_call "[" key: (identifier) @font-lock-variable-name-face "]"))

Expand Down

0 comments on commit b35c983

Please sign in to comment.