-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Description
Describe the bug
The @ file picker excludes hidden folders (those prefixed with .) from search results, making it impossible to reference important configuration files like GitHub workflows, VS Code settings, and other dotfiles.
When attempting to use @ to reference a file in .github/workflows/, the file picker does not show these files even though they exist in the project and are visible in the file tree.
To Reproduce
Steps to reproduce the behavior:
- Open a project that contains a
.githubfolder with workflow files (e.g.,.github/workflows/deploy.yml) - In the chat interface, type
@to open the file picker - Search for the workflow file (e.g., type "deploy" or "workflow")
- Observe that files within
.githubfolder do not appear in the search results - Note that the file is visible in the folder tree on the right side panel in VS Code
Expected behavior
The @ file picker should include files from hidden folders (dotfiles) in search results, especially since these folders often contain critical development configuration:
.github/workflows/- CI/CD configurations.vscode/- Editor settings.config/- Application configs- Other dotfiles tracked in git
Alternatively, there should be a toggle/setting to show/hide dotfiles in the file picker.
Screenshots
Please provide the following information
-
OS & Arch: macOS Tahoe 26.1 (25B78)
-
Interface: UI
-
Version: 1.17.0
-
Extensions enabled: Auto Visualiser, Chatrecall, Code Execution, Context7, Developer, Extension Manager, Linear, Memory, Notion, Skills
-
Provider & Model: anthropic/claude-sonnet-4.5 — OpenRouter
Additional context
It probably makes sense not to show all hidden files (although you could respect the OS' settings for that)
Possible solutions:
- Include all git-tracked files regardless of hidden status (I'd probably suggest this one as this is more of a developer specific issue)
- Add a setting to toggle "Show hidden files in @ picker"
- Respect
.gitignorebut include tracked dotfiles (maybe you want to access build artifacts for some reason, so maybe don't opt for this) - Add a special indicator in the picker for hidden files but still show them