├── .eslintrc.json ├── .gitignore ├── .vscode-test.mjs ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── images ├── custom-label-demo.gif ├── discover-keybinding.gif ├── font-size-demo.gif ├── light-theme-demo.gif ├── new-window-with-profile-demo.gif └── vscode-commander.png ├── package.json ├── scenarios.md ├── scripts └── prepare-prerelease-build.js ├── src ├── chatParticipant.tsx ├── configurationSearch.ts ├── extension.ts ├── jsonSchema.ts ├── test │ ├── extension.test.ts │ └── mocks.ts └── tools │ ├── runCommands.tsx │ ├── searchConfigurations.tsx │ ├── updateSettings.tsx │ └── utils.ts ├── tsconfig.json └── webpack.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/.vscode-test.mjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/SECURITY.md -------------------------------------------------------------------------------- /images/custom-label-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/images/custom-label-demo.gif -------------------------------------------------------------------------------- /images/discover-keybinding.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/images/discover-keybinding.gif -------------------------------------------------------------------------------- /images/font-size-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/images/font-size-demo.gif -------------------------------------------------------------------------------- /images/light-theme-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/images/light-theme-demo.gif -------------------------------------------------------------------------------- /images/new-window-with-profile-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/images/new-window-with-profile-demo.gif -------------------------------------------------------------------------------- /images/vscode-commander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/images/vscode-commander.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/package.json -------------------------------------------------------------------------------- /scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/scenarios.md -------------------------------------------------------------------------------- /scripts/prepare-prerelease-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/scripts/prepare-prerelease-build.js -------------------------------------------------------------------------------- /src/chatParticipant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/src/chatParticipant.tsx -------------------------------------------------------------------------------- /src/configurationSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/src/configurationSearch.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/jsonSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/src/jsonSchema.ts -------------------------------------------------------------------------------- /src/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/src/test/extension.test.ts -------------------------------------------------------------------------------- /src/test/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/src/test/mocks.ts -------------------------------------------------------------------------------- /src/tools/runCommands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/src/tools/runCommands.tsx -------------------------------------------------------------------------------- /src/tools/searchConfigurations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/src/tools/searchConfigurations.tsx -------------------------------------------------------------------------------- /src/tools/updateSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/src/tools/updateSettings.tsx -------------------------------------------------------------------------------- /src/tools/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/src/tools/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-commander/HEAD/webpack.config.js --------------------------------------------------------------------------------