eamodio / vscode-find-related

Finds files related to the current file based on user-defined configuration rules in VS Code
MIT License
30 stars 12 forks source link

Show excluded files #9

Closed ghost closed 6 years ago

ghost commented 6 years ago

For transpiled languages like typescript or dart or sass it is common to hide the compiled .js/.css in the file explorer through config like:

"files.exclude": {
    "**/*.js": { "when": "$(basename).ts" },
    "**/*.css": { "when": "$(basename).scss" }
},

Find Related Files seems to respects this exclusion which makes it impossible to switch to the .js. Switching between js/ts is a major use case of this extension and I would like to suggest adding a setting to ignore/bypass the exclude list.

eamodio commented 6 years ago

0.7.0 adds a findrelated.ignoreExcludes setting to specify whether to ignore file excludes when searching for related files

github-actions[bot] commented 1 year ago

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.