-
Notifications
You must be signed in to change notification settings - Fork 67
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
Allow wildcards in files association #93
Comments
Nice, it's a good feature, I can take a look at how to implement it. |
Started looking into this and this is not supported by the VS Code extension API microsoft/vscode#12493 |
Maybe there is a way to do it, material-icon-theme has that feature. About the #92, did you test it? It work fine for you? |
Edit: Sorry, you are right in that they support this, it's the glob patterns that are not supported like |
Yes, we can make the simplest version, it already solves most cases. |
Ah, I thought that was the expected behavior? At least when I tested it with the material icons it also worked the same way (icon only changes after reload) |
hmm I see, I wasn't 100% sure how it would look after publishing. The idea was to behave exactly like material-icons, as soon as the I will try to do this. If everything goes well I'll open another PR. |
|
You can use "symbols.files.associations": {
"*.service.ts": "nest"
}, |
It would be great to add
*
support for files association like:as right now you have to match the exact name for it to work (
app.module.ts
), which can get tedious.FYI @wladimirgrf
The text was updated successfully, but these errors were encountered: