miguelsolorio/vscode-symbols

How to use Regex for icons?

Opened this issue · 3 comments

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?
Screenshot_26
Screenshot_27

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