Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Highlight Angular Signal Type Variables in Class and Template Files #2086

Open
1 of 2 tasks
gabrielnemeth opened this issue Sep 16, 2024 · 5 comments
Open
1 of 2 tasks
Labels

Comments

@gabrielnemeth
Copy link

🚀 Feature request

Is your feature request related to a problem? Please describe.

The Angular Language Service in VS Code does not highlight signal type variables in both the class and template files. This makes it harder to tell signal variables apart from regular properties in a project. WebStorm already highlights signals, and this helps with recognizing them quickly.

Feature Type

What does this request affect:

  • Angular Language Service VSCode extension
  • Angular Language Service server

Describe the solution you'd like

Add highlighting for signal type variables, both in the class and template files, so it's easy to distinguish them from other variables.

@FjedorGaede
Copy link

Any updates on this?

Coming from WebStorm, working with Angular signals in VSCode feels much harder. In WebStorm, signals are visually distinct from functions and properties, and my color scheme (dracula) even shows a difference between when a signal is defined and when it’s used. This makes the lack of clarity in VSCode confusing, especially since signals are such a key feature in modern Angular.

Am I missing something, or is better support planned?

See my attached screenshots:
Webstorm
Alt-Text
VSCode
Alt-Text

@KirillAdeev
Copy link

any news on this?

@CactusCorantin
Copy link

+1 2025 :)

@dtomaszewski
Copy link

+1

@forivall
Copy link

forivall commented Apr 3, 2025

Doing an initial investigation if some enterprising person wants to implement this, I think this would be done with a custom semantic token modifier:

{
  "contributes": {
    "semanticTokenModifiers": [
      {
        "id": "signal",
        "description": "Annotates a symbol that is a signal"
      }
    ]
  }
}

To provide the semantic tokens, you would

  • update the angular language service and
  • provide a custom getEncodedSemanticClassifications which does a lookup in typescript's symbol table to a custom modifier with spans for signal,
  • and, to provide that back into vscode, implement the DocumentSemanticTokensProvider in this extension, (and i'm not sure of this, as i'm just browsing on github and havent clone'd the repo), in https://github.com/angular/vscode-ng-language-service/blob/main/client/src/client.ts
    • either: add the semantic token related functions to the middleware in the config,
    • or register a separate SemanticTokensProvider.

I'd love to get feedback on this plan from the maintainers, and hopefully that can help plan out the work for either myself or someone else to get working on this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

6 participants