vscode-file-nesting-config icon indicating copy to clipboard operation
vscode-file-nesting-config copied to clipboard

Merge `Makefile`

Open thoroc opened this issue 5 months ago • 1 comments

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.

thoroc avatar Feb 06 '24 08:02 thoroc