vscode-symbols
vscode-symbols copied to clipboard
How to use Regex for icons?
How to use Regex for icons?
I need files that have the prefix Test.php in their name to have different icons, how can I add this?
Unfortunately regex isn't supported for file associations, it would need to either be an exact file name match or wildcard at the dot level like:
"symbols.files.associations": {
"*.test.php": "brackets-purple"
}
So it would only work with files that are named sample.test.php
I need the Test.php suffix for cases like UserTest.php PagesTest.php