vscode-file-nesting-config
vscode-file-nesting-config copied to clipboard
Merge `Makefile`
Clear and concise description of the problem
I have several project that uses Makefile
and associated *.mk
files. I'd like to make a permanent change so the config updater has those settings.
"explorer.fileNesting.patterns": {
"Makefile": "*.mk",
}
Suggested solution
Add the following to the update.mjs
file:
const base = {
...
'Makefile': '*.mk',
...
}
Alternative
Re-adding the pattern matching on every config update.
Additional context
No response
Validations
- [X] Follow our Code of Conduct
- [X] Read the Contributing Guide.
- [X] Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
Sure, pr welcome