-
Notifications
You must be signed in to change notification settings - Fork 123
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
Comments
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? |
any news on this? |
+1 2025 :) |
+1 |
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
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! |
🚀 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:
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.
The text was updated successfully, but these errors were encountered: