From: Dmitry Gutov Date: Mon, 6 Feb 2023 02:42:12 +0000 (+0200) Subject: go-ts-mode: Highlight variable declarations X-Git-Tag: emacs-29.0.90~485 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=79ab62e0bb5;p=emacs.git go-ts-mode: Highlight variable declarations * lisp/progmodes/go-ts-mode.el (go-ts-mode--font-lock-settings): Highlight variable declarations in 'definition' feature. --- diff --git a/lisp/progmodes/go-ts-mode.el b/lisp/progmodes/go-ts-mode.el index dbb08c81447..7802c1fbfcc 100644 --- a/lisp/progmodes/go-ts-mode.el +++ b/lisp/progmodes/go-ts-mode.el @@ -135,7 +135,13 @@ (field_declaration name: (field_identifier) @font-lock-property-face) (parameter_declaration - name: (identifier) @font-lock-variable-name-face)) + name: (identifier) @font-lock-variable-name-face) + (short_var_declaration + left: (expression_list + (identifier) @font-lock-variable-name-face + ("," (identifier) @font-lock-variable-name-face)*)) + (var_spec name: (identifier) @font-lock-variable-name-face + ("," name: (identifier) @font-lock-variable-name-face)*)) :language 'go :feature 'function