|
From: | Noah Peart |
Subject: | bug#71209: [PATCH] Add font-locking for variables in go-ts-mode range clauses |
Date: | Fri, 31 May 2024 18:50:52 -0700 |
> c++-ts-mode will need to get updated tooI've been using these for c++, I think they are still missing;; for (auto x: ...)(for_range_loop
declarator: (identifier) @font-lock-variable-name-face)
;; auto& x
(reference_declarator
(identifier) @font-lock-variable-name-face)
;; auto[&] [x, y]
(structured_binding_declarator
_ [(identifier)] @font-lock-variable-name-face)I suppose most people keep the default font-locking for variable-nameand variable-use, so these missing rules go unnoticed.On Fri, May 31, 2024 at 6:09 PM Randy Taylor <dev@rjt.dev> wrote:On Thursday, May 30th, 2024 at 09:25, Noah Peart <noah.v.peart@gmail.com> wrote:
> > it seems we already highlight this when at treesit-font-lock-level 4?
> They get highlighted with `font-lock-variable-use-face` at level 4, but shouldn't
> they be getting `font-lock-variable-name-face` in the 'definition feature?
>
Indeed, thanks. Could someone please install the patch? Thanks in advance.
Seems like c++-ts-mode will need to get updated too, as with:
for (const auto& i : things) {}
i gets font-lock-variable-use-face. I wonder if any other ts modes
have similar issues.
[Prev in Thread] | Current Thread | [Next in Thread] |