# listFilesVSCode **Repository Path**: weilaidb/list-files-vscode ## Basic Information - **Project Name**: listFilesVSCode - **Description**: list files for vscode plugin, when lots of files in project - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-30 - **Last Updated**: 2025-04-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # List Files Provides a list of files in your workspace that can be filtered and selected. ![Image of Command](https://raw.githubusercontent.com/DonJayamanne/listFilesVSCode/master/images/command.png) ![Image of Command Executed with file list](https://raw.githubusercontent.com/DonJayamanne/listFilesVSCode/master/images/list%20of%20files.png) ## How to install * Install [Visual Studio Code](https://code.visualstudio.com/) * Open `View -> Command Palette... and type ext install listFiles` * Restart Visual Studio Code and select the command "`Files: List Files to Open`" From the list of files displayed, select a file to open. ## Hotkeys ``` "keybindings":[ { "command": "extension.listFilesToOpen", "key": "ctrl+alt+l", "mac": "ctrl+alt+l" } ] ``` ## Settings You can configure the settings, to display a specific types of files and folders, or exclude specific files and folders. Similarly you could configure the number of files displayed. ``` "properties": { "findFiles.fileIncludeGlob": { "type": "string", "default": "**", "description": "A glob pattern that defines the files to search for." }, "findFiles.fileExcludeGlob": { "type": "string", "default": "**\\node_modules\\**", "description": "A glob pattern that defines files and folders to exclude." }, "findFiles.maxResults": { "type": "number", "default": 1000, "description": "An upper-bound for the result." } } ``` ## Source [Github](https://github.com/DonJayamanne/listFilesVSCode) ## Change Log ### Version 0.0.3 Updated chanage log ### Version 0.0.2 Fixed default setting for findFiles.fileExcludeGlob, to exclude node_modules directory. ## License [MIT](https://raw.githubusercontent.com/DonJayamanne/listFilesVSCode/master/LICENSE)