diff --git a/All Commands.MD b/All Commands.MD new file mode 100644 index 0000000..d411638 --- /dev/null +++ b/All Commands.MD @@ -0,0 +1,35 @@ +# **All Commands** +This Python script merges the data from `plugInCommands.py` and `builtInCommands.py` and saves the combined data in a JSON file called `AllCommands.json`. You can run this script in two different ways: + +### *Option 1: Run the code directly:* +To run the code directly, simply execute the `AllCommands.py` script in your terminal: +``` +python3 AllCommands.py +``` +This will create an `AllCommands.json` file in the same directory, containing the combined data from `plugInCommands.py` and `builtInCommands.py`. + +### *Option 2: Call the file from a different Python script:* +You can also use the `AllCommands.py` script as a module and call its `ExportCommands()` function from a different Python script. To do this, follow these steps: + +1. Import the main function from `AllCommands.py` in your new Python script: +``` +from AllCommands import ExportCommands +``` +2. Call the ExportCommands() function in your new script: +``` +merged_data = ExportCommands() +``` +3. This will execute the merging process and return the combined data as a dictionary. The `AllCommands.json` file will also be created in the same directory as `AllCommands.py`. + +Here's an example of how to use the ExportCommands() function from a different Python script: +``` +from AllCommands import ExportCommands + +def process_merged_data(): + merged_data = ExportCommands() + # Perform additional processing on merged_data if needed + +if __name__ == "__main__": + process_merged_data() +``` +In this example, the `process_merged_data()` function imports and calls the `ExportCommands()` function from `AllCommands.py`. You can perform additional processing on the returned merged_data dictionary as needed. diff --git a/AllCommands.json b/AllCommands.json new file mode 100644 index 0000000..14e3c58 --- /dev/null +++ b/AllCommands.json @@ -0,0 +1,13526 @@ +{ + "plugin_commands": [ + { + "source": "vscode-eslint", + "version": "2.4.0", + "commands": [ + { + "title": "Fix all auto-fixable Problems", + "category": "ESLint", + "command": "eslint.executeAutofix" + }, + { + "title": "Create ESLint configuration", + "category": "ESLint", + "command": "eslint.createConfig" + }, + { + "title": "Show Output Channel", + "category": "ESLint", + "command": "eslint.showOutputChannel" + }, + { + "title": "Migrate Settings", + "category": "ESLint", + "command": "eslint.migrateSettings" + }, + { + "title": "Restart ESLint Server", + "category": "ESLint", + "command": "eslint.restart" + } + ] + }, + { + "source": "python", + "version": "2023.7.11011538", + "commands": [ + { + "title": "%python.command.python.createNewFile.title%", + "shortTitle": "%python.menu.createNewFile.title%", + "category": "Python", + "command": "python.createNewFile" + }, + { + "category": "Python", + "command": "python.analysis.restartLanguageServer", + "title": "%python.command.python.analysis.restartLanguageServer.title%" + }, + { + "category": "Python", + "command": "python.clearCacheAndReload", + "title": "%python.command.python.clearCacheAndReload.title%" + }, + { + "category": "Python", + "command": "python.clearWorkspaceInterpreter", + "title": "%python.command.python.clearWorkspaceInterpreter.title%" + }, + { + "category": "Python", + "command": "python.configureTests", + "title": "%python.command.python.configureTests.title%" + }, + { + "category": "Python", + "command": "python.createTerminal", + "title": "%python.command.python.createTerminal.title%" + }, + { + "category": "Python", + "command": "python.createEnvironment", + "title": "%python.command.python.createEnvironment.title%" + }, + { + "category": "Python", + "command": "python.enableLinting", + "title": "%python.command.python.enableLinting.title%" + }, + { + "category": "Python", + "command": "python.enableSourceMapSupport", + "title": "%python.command.python.enableSourceMapSupport.title%" + }, + { + "category": "Python", + "command": "python.execInTerminal", + "title": "%python.command.python.execInTerminal.title%" + }, + { + "category": "Python", + "command": "python.execInTerminal-icon", + "icon": "$(play)", + "title": "%python.command.python.execInTerminalIcon.title%" + }, + { + "category": "Python", + "command": "python.debugInTerminal", + "icon": "$(debug-alt)", + "title": "%python.command.python.debugInTerminal.title%" + }, + { + "category": "Python", + "command": "python.execSelectionInDjangoShell", + "title": "%python.command.python.execSelectionInDjangoShell.title%" + }, + { + "category": "Python", + "command": "python.execSelectionInTerminal", + "title": "%python.command.python.execSelectionInTerminal.title%" + }, + { + "category": "Python", + "command": "python.launchTensorBoard", + "title": "%python.command.python.launchTensorBoard.title%" + }, + { + "category": "Python", + "command": "python.refreshTensorBoard", + "enablement": "python.hasActiveTensorBoardSession", + "icon": "$(refresh)", + "title": "%python.command.python.refreshTensorBoard.title%" + }, + { + "category": "Python", + "command": "python.reportIssue", + "title": "%python.command.python.reportIssue.title%" + }, + { + "category": "Test", + "command": "testing.reRunFailTests", + "icon": "$(run-errors)", + "title": "%python.command.testing.rerunFailedTests.title%" + }, + { + "category": "Python", + "command": "python.runLinting", + "title": "%python.command.python.runLinting.title%" + }, + { + "category": "Python", + "command": "python.setInterpreter", + "title": "%python.command.python.setInterpreter.title%" + }, + { + "category": "Python", + "command": "python.setLinter", + "title": "%python.command.python.setLinter.title%" + }, + { + "category": "Python Refactor", + "command": "python.sortImports", + "title": "%python.command.python.sortImports.title%" + }, + { + "category": "Python", + "command": "python.startREPL", + "title": "%python.command.python.startREPL.title%" + }, + { + "category": "Python", + "command": "python.viewLanguageServerOutput", + "enablement": "python.hasLanguageServerOutputChannel", + "title": "%python.command.python.viewLanguageServerOutput.title%" + }, + { + "category": "Python", + "command": "python.viewOutput", + "icon": { + "dark": "resources/dark/repl.svg", + "light": "resources/light/repl.svg" + }, + "title": "%python.command.python.viewOutput.title%" + }, + { + "title": "%python.command.python.createNewFile.title%", + "shortTitle": "%python.menu.createNewFile.title%", + "category": "Python", + "command": "python.createNewFile" + }, + { + "category": "Python", + "command": "python.analysis.restartLanguageServer", + "title": "%python.command.python.analysis.restartLanguageServer.title%" + }, + { + "category": "Python", + "command": "python.clearCacheAndReload", + "title": "%python.command.python.clearCacheAndReload.title%" + }, + { + "category": "Python", + "command": "python.clearWorkspaceInterpreter", + "title": "%python.command.python.clearWorkspaceInterpreter.title%" + }, + { + "category": "Python", + "command": "python.configureTests", + "title": "%python.command.python.configureTests.title%" + }, + { + "category": "Python", + "command": "python.createTerminal", + "title": "%python.command.python.createTerminal.title%" + }, + { + "category": "Python", + "command": "python.createEnvironment", + "title": "%python.command.python.createEnvironment.title%" + }, + { + "category": "Python", + "command": "python.enableLinting", + "title": "%python.command.python.enableLinting.title%" + }, + { + "category": "Python", + "command": "python.enableSourceMapSupport", + "title": "%python.command.python.enableSourceMapSupport.title%" + }, + { + "category": "Python", + "command": "python.execInTerminal", + "title": "%python.command.python.execInTerminal.title%" + }, + { + "category": "Python", + "command": "python.execInTerminal-icon", + "icon": "$(play)", + "title": "%python.command.python.execInTerminalIcon.title%" + }, + { + "category": "Python", + "command": "python.debugInTerminal", + "icon": "$(debug-alt)", + "title": "%python.command.python.debugInTerminal.title%" + }, + { + "category": "Python", + "command": "python.execSelectionInDjangoShell", + "title": "%python.command.python.execSelectionInDjangoShell.title%" + }, + { + "category": "Python", + "command": "python.execSelectionInTerminal", + "title": "%python.command.python.execSelectionInTerminal.title%" + }, + { + "category": "Python", + "command": "python.launchTensorBoard", + "title": "%python.command.python.launchTensorBoard.title%" + }, + { + "category": "Python", + "command": "python.refreshTensorBoard", + "enablement": "python.hasActiveTensorBoardSession", + "icon": "$(refresh)", + "title": "%python.command.python.refreshTensorBoard.title%" + }, + { + "category": "Python", + "command": "python.reportIssue", + "title": "%python.command.python.reportIssue.title%" + }, + { + "category": "Test", + "command": "testing.reRunFailTests", + "icon": "$(run-errors)", + "title": "%python.command.testing.rerunFailedTests.title%" + }, + { + "category": "Python", + "command": "python.runLinting", + "title": "%python.command.python.runLinting.title%" + }, + { + "category": "Python", + "command": "python.setInterpreter", + "title": "%python.command.python.setInterpreter.title%" + }, + { + "category": "Python", + "command": "python.setLinter", + "title": "%python.command.python.setLinter.title%" + }, + { + "category": "Python Refactor", + "command": "python.sortImports", + "title": "%python.command.python.sortImports.title%" + }, + { + "category": "Python", + "command": "python.startREPL", + "title": "%python.command.python.startREPL.title%" + }, + { + "category": "Python", + "command": "python.viewLanguageServerOutput", + "enablement": "python.hasLanguageServerOutputChannel", + "title": "%python.command.python.viewLanguageServerOutput.title%" + }, + { + "category": "Python", + "command": "python.viewOutput", + "icon": { + "dark": "resources/dark/repl.svg", + "light": "resources/light/repl.svg" + }, + "title": "%python.command.python.viewOutput.title%" + } + ] + }, + { + "source": "vscode-pylance", + "version": "2023.4.10", + "commands": [ + { + "command": "pylance.reportIssue", + "title": "Pylance: Report Issue..." + }, + { + "command": "pylance.dumpTokens", + "title": "Dump token streams ...", + "category": "Pylance debugging", + "enablement": "editorLangId == python && config.pyright.development" + }, + { + "command": "pylance.dumpNodes", + "title": "Dump parse tree ...", + "category": "Pylance debugging", + "enablement": "editorLangId == python && config.pyright.development" + }, + { + "command": "pylance.dumpTypes", + "title": "Dump type info ...", + "category": "Pylance debugging", + "enablement": "editorLangId == python && config.pyright.development" + }, + { + "command": "pylance.dumpCachedTypes", + "title": "Pylance: Dump cached type info ...", + "category": "Pylance debugging", + "enablement": "editorLangId == python && config.pyright.development" + }, + { + "command": "pylance.dumpCodeFlowGraph", + "title": "Pylance: Dump code flow graph for node ...", + "category": "Pylance debugging", + "enablement": "editorLangId == python && config.pyright.development" + } + ] + }, + { + "source": "jupyter", + "version": "2023.3.1000892223", + "commands": [ + { + "command": "dataScience.ClearCache", + "title": "%jupyter.command.dataScience.clearCache.title%", + "category": "Jupyter (Dev)", + "enablement": "jupyter.development" + }, + { + "command": "dataScience.ClearUserProviderJupyterServerCache", + "title": "%jupyter.command.dataScience.clearUserProviderJupyterServerCache.title%", + "category": "Jupyter (Dev)", + "enablement": "jupyter.development" + }, + { + "command": "jupyter.replayPylanceLog", + "title": "%jupyter.command.jupyter.replayPylanceLog.title%", + "category": "Jupyter (Dev)", + "enablement": "jupyter.development && notebookType == jupyter-notebook && isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.replayPylanceLogStep", + "title": "%jupyter.command.jupyter.replayPylanceLogStep.title%", + "category": "Jupyter (Dev)", + "icon": "$(debug-start)", + "enablement": "jupyter.development && notebookType == jupyter-notebook && isWorkspaceTrusted && jupyter.replayLogLoaded && !jupyter.webExtension" + }, + { + "command": "jupyter.filterKernels", + "title": "%jupyter.command.jupyter.filterKernels.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension && config.notebook.kernelPicker.type != mru" + }, + { + "command": "jupyter.runByLine", + "title": "%jupyter.command.jupyter.runByLine.title%", + "icon": "$(debug-line-by-line)", + "category": "Jupyter", + "enablement": "notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted && resource not in jupyter.notebookeditor.debugDocuments || !notebookKernel && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted" + }, + { + "command": "jupyter.runAndDebugCell", + "title": "%jupyter.command.jupyter.debugCell.title%", + "icon": "$(debug-alt-small)", + "category": "Jupyter", + "enablement": "notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted && resource not in jupyter.notebookeditor.debugDocuments || !notebookKernel && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted" + }, + { + "command": "jupyter.runByLineNext", + "title": "%jupyter.command.jupyter.runByLineNext.title%", + "icon": "$(debug-line-by-line)", + "category": "Jupyter", + "enablement": "notebookCellResource in jupyter.notebookeditor.runByLineCells" + }, + { + "command": "jupyter.runByLineStop", + "title": "%jupyter.command.jupyter.runByLineStop.title%", + "icon": "$(debug-continue-small)", + "category": "Jupyter", + "enablement": "notebookCellResource in jupyter.notebookeditor.runByLineCells" + }, + { + "command": "jupyter.viewOutput", + "title": "%jupyter.command.jupyter.viewOutput.title%", + "category": "Jupyter" + }, + { + "command": "jupyter.notebookeditor.export", + "title": "%DataScience.notebookExportAs%", + "shortTitle": "%DataScience.notebookExportAs.shorttitle%", + "category": "Notebook", + "icon": { + "light": "resources/light/export_to_python.svg", + "dark": "resources/dark/export_to_python.svg" + }, + "enablement": "notebookType == jupyter-notebook && isWorkspaceTrusted && !jupyter.webExtension || notebookType == jupyter-notebook && isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//" + }, + { + "command": "jupyter.export", + "title": "%DataScience.notebookExportAs%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension || isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//" + }, + { + "command": "jupyter.exportAsPythonScript", + "title": "%jupyter.command.jupyter.exportAsPythonScript.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension || isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//" + }, + { + "command": "jupyter.exportToHTML", + "title": "%jupyter.command.jupyter.exportToHTML.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension || isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//" + }, + { + "command": "jupyter.exportToPDF", + "title": "%jupyter.command.jupyter.exportToPDF.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension || isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//" + }, + { + "command": "jupyter.selectJupyterInterpreter", + "title": "%jupyter.command.jupyter.selectJupyterInterpreter.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.runcurrentcell", + "title": "%jupyter.command.jupyter.runcurrentcell.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.debugcell", + "title": "%jupyter.command.jupyter.debugcell.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.debugstepover", + "title": "%jupyter.command.jupyter.debugstepover.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.debugstop", + "title": "%jupyter.command.jupyter.debugstop.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.debugcontinue", + "title": "%jupyter.command.jupyter.debugcontinue.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.insertCellBelowPosition", + "title": "%jupyter.command.jupyter.insertCellBelowPosition.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.insertCellBelow", + "title": "%jupyter.command.jupyter.insertCellBelow.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.insertCellAbove", + "title": "%jupyter.command.jupyter.insertCellAbove.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.deleteCells", + "title": "%jupyter.command.jupyter.deleteCells.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.selectCell", + "title": "%jupyter.command.jupyter.selectCell.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.selectCellContents", + "title": "%jupyter.command.jupyter.selectCellContents.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.extendSelectionByCellAbove", + "title": "%jupyter.command.jupyter.extendSelectionByCellAbove.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.extendSelectionByCellBelow", + "title": "%jupyter.command.jupyter.extendSelectionByCellBelow.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.moveCellsUp", + "title": "%jupyter.command.jupyter.moveCellsUp.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.moveCellsDown", + "title": "%jupyter.command.jupyter.moveCellsDown.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.changeCellToMarkdown", + "title": "%jupyter.command.jupyter.changeCellToMarkdown.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.changeCellToCode", + "title": "%jupyter.command.jupyter.changeCellToCode.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.gotoNextCellInFile", + "title": "%jupyter.command.jupyter.gotoNextCellInFile.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.gotoPrevCellInFile", + "title": "%jupyter.command.jupyter.gotoPrevCellInFile.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.runcurrentcelladvance", + "title": "%jupyter.command.jupyter.runcurrentcelladvance.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.runcurrentcellandallbelow.palette", + "title": "%jupyter.command.jupyter.runcurrentcellandallbelow.palette.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.runallcellsabove.palette", + "title": "%jupyter.command.jupyter.runallcellsabove.palette.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.debugcurrentcell.palette", + "title": "%jupyter.command.jupyter.debugcurrentcell.palette.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.execSelectionInteractive", + "title": "%jupyter.command.jupyter.execSelectionInteractive.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.createnewinteractive", + "title": "%jupyter.command.jupyter.createnewinteractive.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.runFileInteractive", + "title": "%jupyter.command.jupyter.runFileInteractive.title%", + "icon": "$(play)", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.debugFileInteractive", + "title": "%jupyter.command.jupyter.debugFileInteractive.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.runallcells", + "title": "%jupyter.command.jupyter.runallcells.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.runallcellsabove", + "title": "%jupyter.command.jupyter.runallcellsabove.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.runcellandallbelow", + "title": "%jupyter.command.jupyter.runcellandallbelow.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.runcell", + "title": "%jupyter.command.jupyter.runcell.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.runtoline", + "title": "%jupyter.command.jupyter.runtoline.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.runfromline", + "title": "%jupyter.command.jupyter.runfromline.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.selectjupyteruri", + "title": "%jupyter.command.jupyter.selectjupyteruri.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted" + }, + { + "command": "jupyter.importnotebook", + "title": "%jupyter.command.jupyter.importnotebook.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.importnotebookfile", + "title": "%jupyter.command.jupyter.importnotebookfile.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.exportoutputasnotebook", + "title": "%jupyter.command.jupyter.exportoutputasnotebook.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.exportfileasnotebook", + "title": "%jupyter.command.jupyter.exportfileasnotebook.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.exportfileandoutputasnotebook", + "title": "%jupyter.command.jupyter.exportfileandoutputasnotebook.title%", + "category": "Jupyter", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension" + }, + { + "command": "jupyter.notebookeditor.undocells", + "title": "%jupyter.command.jupyter.undocells.title%", + "category": "Notebook", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.notebookeditor.redocells", + "title": "%jupyter.command.jupyter.redocells.title%", + "category": "Notebook", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.interruptkernel", + "title": "%jupyter.command.jupyter.interruptkernel.title%", + "shortTitle": "%jupyter.command.jupyter.interruptkernel.shorttitle%", + "category": "Jupyter", + "icon": { + "light": "resources/light/interrupt.svg", + "dark": "resources/dark/interrupt.svg" + }, + "enablement": "isWorkspaceTrusted && jupyter.interactive.canInterruptNotebookKernel" + }, + { + "command": "jupyter.restartkernel", + "title": "%jupyter.command.jupyter.restartkernel.title%", + "shortTitle": "%jupyter.command.jupyter.restartkernel.shorttitle%", + "category": "Jupyter", + "icon": { + "light": "resources/light/restart-kernel.svg", + "dark": "resources/dark/restart-kernel.svg" + }, + "enablement": "isWorkspaceTrusted && jupyter.interactive.canRestartNotebookKernel" + }, + { + "command": "jupyter.notebookeditor.restartkernel", + "title": "%jupyter.command.jupyter.restartkernel.title%", + "shortTitle": "%jupyter.command.jupyter.restartkernel.shorttitle%", + "category": "Notebook", + "icon": { + "light": "resources/light/restart-kernel.svg", + "dark": "resources/dark/restart-kernel.svg" + }, + "enablement": "notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.notebookeditor.canrestartNotebookkernel && isWorkspaceTrusted" + }, + { + "command": "jupyter.selectNativeJupyterUriFromToolBar", + "title": "%jupyter.command.jupyter.selectjupyteruri.title%", + "category": "Jupyter", + "icon": "$(debug-disconnect)", + "enablement": "isWorkspaceTrusted && !jupyter.webExtension && config.notebook.kernelPicker.type != mru" + }, + { + "command": "jupyter.notebookeditor.addcellbelow", + "title": "%jupyter.command.jupyter.notebookeditor.addcellbelow.title%", + "category": "Notebook", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.notebookeditor.removeallcells", + "title": "%jupyter.command.jupyter.notebookeditor.removeallcells.title%", + "category": "Notebook", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.notebookeditor.expandallcells", + "title": "%jupyter.command.jupyter.notebookeditor.expandallcells.title%", + "category": "Notebook", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.notebookeditor.collapseallcells", + "title": "%jupyter.command.jupyter.notebookeditor.collapseallcells.title%", + "category": "Notebook", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.expandallcells", + "title": "%jupyter.command.jupyter.expandallcells.title%", + "shortTitle": "%jupyter.command.jupyter.expandallcells.shorttitle%", + "category": "Jupyter", + "icon": "$(expand-all)" + }, + { + "command": "jupyter.collapseallcells", + "title": "%jupyter.command.jupyter.collapseallcells.title%", + "shortTitle": "%jupyter.command.jupyter.collapseallcells.shorttitle%", + "category": "Jupyter", + "icon": "$(collapse-all)" + }, + { + "command": "jupyter.addcellbelow", + "title": "%jupyter.command.jupyter.addcellbelow.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.createnewnotebook", + "title": "%jupyter.command.jupyter.createnewnotebook.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.scrolltocell", + "title": "%jupyter.command.jupyter.scrolltocell.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.latestExtension", + "title": "DataScience.latestExtension", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.enableDebugLogging", + "title": "%jupyter.command.jupyter.enableDebugLogging.title%", + "category": "Jupyter", + "enablement": "!jupyter.webExtension" + }, + { + "command": "jupyter.resetLoggingLevel", + "title": "%jupyter.command.jupyter.resetLoggingLevel.title%", + "enablement": "!jupyter.webExtension", + "category": "Jupyter" + }, + { + "command": "jupyter.showDataViewer", + "title": "%jupyter.command.jupyter.showDataViewer.title%", + "enablement": "!jupyter.webExtension", + "category": "Jupyter" + }, + { + "command": "jupyter.clearSavedJupyterUris", + "title": "%jupyter.command.jupyter.clearSavedJupyterUris.title%", + "category": "Jupyter" + }, + { + "command": "jupyter.openVariableView", + "title": "%jupyter.command.jupyter.openVariableView.title%", + "shortTitle": "%jupyter.command.jupyter.openVariableView.shorttitle%", + "icon": "$(variable-group)", + "category": "Jupyter", + "enablement": "notebookType == jupyter-notebook && isWorkspaceTrusted || notebookType == interactive && isWorkspaceTrusted" + }, + { + "command": "jupyter.openOutlineView", + "title": "%jupyter.command.jupyter.openOutlineView.title%", + "shortTitle": "%jupyter.command.jupyter.openOutlineView.shorttitle%", + "icon": "$(list-unordered)", + "category": "Jupyter", + "enablement": "notebookType == jupyter-notebook" + }, + { + "command": "jupyter.refreshDataViewer", + "title": "%DataScience.refreshDataViewerCommandPalette%", + "category": "Jupyter", + "enablement": "jupyter.dataViewerActive && isWorkspaceTrusted" + }, + { + "command": "jupyter.interactive.clearAllCells", + "title": "%DataScience.interactiveClearAllCells%", + "icon": "$(close)", + "category": "Jupyter" + }, + { + "command": "jupyter.interactive.goToCode", + "title": "%DataScience.interactiveGoToCode%", + "icon": "$(go-to-file)", + "category": "Jupyter" + }, + { + "command": "jupyter.interactive.exportasnotebook", + "title": "%DataScience.exportDialogTitle%", + "shortTitle": "%DataScience.exportAsNotebook.shorttitle%", + "icon": "$(save-as)", + "enablement": "notebookType == interactive", + "category": "Jupyter" + }, + { + "command": "jupyter.interactive.exportas", + "title": "%DataScience.notebookExport%", + "icon": { + "light": "resources/light/export_to_python.svg", + "dark": "resources/dark/export_to_python.svg" + }, + "enablement": "notebookType == interactive", + "category": "Jupyter" + }, + { + "command": "jupyter.interactive.copyCell", + "title": "%DataScience.interactiveCopyCell%", + "icon": "$(copy)", + "category": "Jupyter" + }, + { + "command": "jupyter.runInDedicatedExtensionHost", + "title": "%DataScience.runInDedicatedExtensionHost%", + "enablement": "!jupyter.webExtension", + "category": "Jupyter" + }, + { + "command": "jupyter.installPythonExtensionViaKernelPicker", + "title": "%DataScience.installPythonExtensionViaKernelPickerTitle%" + }, + { + "command": "jupyter.installPythonViaKernelPicker", + "title": "%DataScience.installPythonTitle%" + }, + { + "command": "jupyter.switchToRemoteKernels", + "title": "%DataScience.switchToRemoteKernelsTitle%" + } + ] + }, + { + "source": "vscode-jupyter-cell-tags", + "version": "0.1.8", + "commands": [ + { + "command": "jupyter-cell-tags.removeTag", + "title": "Remove Cell Tag", + "icon": "$(close)" + }, + { + "command": "jupyter-cell-tags.addTag", + "title": "Add Cell Tag", + "icon": "$(add)" + }, + { + "command": "jupyter-cell-tags.editTagsInJSON", + "title": "Edit Cell Tags (JSON)", + "icon": "$(go-to-file)" + }, + { + "command": "jupyter-cell-tags.paramaterize", + "title": "Mark Cell as Parameters" + } + ] + }, + { + "source": "vscode-jupyter-slideshow", + "version": "0.1.5", + "commands": [ + { + "command": "jupyter-slideshow.switchSlideType", + "title": "Switch Slide Type" + }, + { + "command": "jupyter-slideshow.editSlideShowInJSON", + "title": "Edit Slide Type (JSON)", + "icon": "$(go-to-file)" + } + ] + }, + { + "source": "azure-account", + "version": "0.11.3", + "commands": [ + { + "command": "azure-account.createAccount", + "title": "%azure-account.commands.createAccount%", + "category": "%azure-account.commands.azure%" + }, + { + "command": "azure-account.login", + "title": "%azure-account.commands.login%", + "category": "%azure-account.commands.azure%" + }, + { + "command": "azure-account.loginToCloud", + "title": "%azure-account.commands.loginToCloud%", + "category": "%azure-account.commands.azure%" + }, + { + "command": "azure-account.loginWithDeviceCode", + "title": "%azure-account.commands.loginWithDeviceCode%", + "category": "%azure-account.commands.azure%" + }, + { + "command": "azure-account.logout", + "title": "%azure-account.commands.logout%", + "category": "%azure-account.commands.azure%" + }, + { + "command": "azure-account.reportIssue", + "title": "%azure-account.commands.reportIssue%", + "category": "%azure-account.commands.azureAccount%" + }, + { + "command": "azure-account.selectSubscriptions", + "title": "%azure-account.commands.selectSubscriptions%", + "category": "%azure-account.commands.azure%" + }, + { + "command": "azure-account.selectTenant", + "title": "%azure-account.commands.selectTenant%", + "category": "%azure-account.commands.azure%" + }, + { + "command": "azure-account.uploadFileCloudConsole", + "title": "%azure-account.commands.uploadFileCloudConsole%", + "category": "%azure-account.commands.azure%" + } + ] + }, + { + "source": "cpptools", + "version": "1.14.5", + "commands": [ + { + "command": "C_Cpp.ConfigurationSelect", + "title": "%c_cpp.command.configurationSelect.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.ConfigurationProviderSelect", + "title": "%c_cpp.command.configurationProviderSelect.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.ConfigurationEditJSON", + "title": "%c_cpp.command.configurationEditJSON.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.ConfigurationEditUI", + "title": "%c_cpp.command.configurationEditUI.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.selectDefaultCompiler", + "title": "%c_cpp.command.selectDefaultCompiler.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.SwitchHeaderSource", + "title": "%c_cpp.command.switchHeaderSource.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.EnableErrorSquiggles", + "title": "%c_cpp.command.enableErrorSquiggles.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.DisableErrorSquiggles", + "title": "%c_cpp.command.disableErrorSquiggles.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.ToggleIncludeFallback", + "title": "%c_cpp.command.toggleIncludeFallback.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.ToggleDimInactiveRegions", + "title": "%c_cpp.command.toggleDimInactiveRegions.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.ResetDatabase", + "title": "%c_cpp.command.resetDatabase.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.TakeSurvey", + "title": "%c_cpp.command.takeSurvey.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.RestartIntelliSenseForFile", + "title": "%c_cpp.command.restartIntelliSenseForFile.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.LogDiagnostics", + "title": "%c_cpp.command.logDiagnostics.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.RescanWorkspace", + "title": "%c_cpp.command.rescanWorkspace.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.VcpkgClipboardInstallSuggested", + "title": "%c_cpp.command.vcpkgClipboardInstallSuggested.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.VcpkgOnlineHelpSuggested", + "title": "%c_cpp.command.vcpkgOnlineHelpSuggested.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.GenerateEditorConfig", + "title": "%c_cpp.command.generateEditorConfig.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.referencesViewGroupByType", + "category": "C/C++", + "title": "%c_cpp.command.referencesViewGroupByType.title%", + "icon": { + "light": "assets/ref-group-by-type-light.svg", + "dark": "assets/ref-group-by-type-dark.svg" + } + }, + { + "command": "C_Cpp.referencesViewUngroupByType", + "category": "C/C++", + "title": "%c_cpp.command.referencesViewUngroupByType.title%", + "icon": { + "light": "assets/ref-ungroup-by-type-light.svg", + "dark": "assets/ref-ungroup-by-type-dark.svg" + } + }, + { + "command": "C_Cpp.GoToNextDirectiveInGroup", + "title": "%c_cpp.command.GoToNextDirectiveInGroup.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.GoToPrevDirectiveInGroup", + "title": "%c_cpp.command.GoToPrevDirectiveInGroup.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.CreateDeclarationOrDefinition", + "title": "%c_cpp.command.CreateDeclarationOrDefinition.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.RunCodeAnalysisOnActiveFile", + "title": "%c_cpp.command.RunCodeAnalysisOnActiveFile.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.RunCodeAnalysisOnOpenFiles", + "title": "%c_cpp.command.RunCodeAnalysisOnOpenFiles.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.RunCodeAnalysisOnAllFiles", + "title": "%c_cpp.command.RunCodeAnalysisOnAllFiles.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.RemoveAllCodeAnalysisProblems", + "title": "%c_cpp.command.RemoveAllCodeAnalysisProblems.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.BuildAndDebugFile", + "title": "%c_cpp.command.BuildAndDebugFile.title%", + "category": "C/C++", + "icon": "$(debug-alt)" + }, + { + "command": "C_Cpp.BuildAndRunFile", + "title": "%c_cpp.command.BuildAndRunFile.title%", + "category": "C/C++", + "icon": "$(run)" + }, + { + "command": "C_Cpp.AddDebugConfiguration", + "title": "%c_cpp.command.AddDebugConfiguration.title%", + "category": "C/C++", + "icon": "$(debug-configure)" + }, + { + "command": "C_Cpp.GenerateDoxygenComment", + "title": "%c_cpp.command.GenerateDoxygenComment.title%", + "category": "C/C++" + }, + { + "command": "C_Cpp.addSshTarget", + "category": "C/C++", + "title": "%c_cpp.command.addSshTarget.title%", + "icon": "$(plus)" + }, + { + "command": "C_Cpp.removeSshTarget", + "category": "C/C++", + "title": "%c_cpp.command.removeSshTarget.title%", + "icon": "$(remove)" + }, + { + "command": "C_Cpp.setActiveSshTarget", + "category": "C/C++", + "title": "%c_cpp.command.setActiveSshTarget.title%", + "icon": "$(check)" + }, + { + "command": "C_Cpp.selectActiveSshTarget", + "category": "C/C++", + "title": "%c_cpp.command.selectActiveSshTarget.title%" + }, + { + "command": "C_Cpp.selectSshTarget", + "category": "C/C++", + "title": "%c_cpp.command.selectSshTarget.title%" + }, + { + "command": "C_Cpp.activeSshTarget", + "category": "C/C++", + "title": "%c_cpp.command.activeSshTarget.title%" + }, + { + "command": "C_Cpp.refreshCppSshTargetsView", + "category": "C/C++", + "title": "%c_cpp.command.refreshCppSshTargetsView.title%", + "icon": "$(refresh)" + }, + { + "command": "C_Cpp.sshTerminal", + "category": "C/C++", + "title": "%c_cpp.command.sshTerminal.title%", + "icon": "$(terminal)" + } + ] + }, + { + "source": "powershell", + "version": "2023.3.3", + "commands": [ + { + "command": "PowerShell.ExpandAlias", + "title": "Expand Alias", + "category": "PowerShell" + }, + { + "command": "PowerShell.EnableISEMode", + "title": "Enable ISE Mode", + "category": "PowerShell" + }, + { + "command": "PowerShell.DisableISEMode", + "title": "Disable ISE Mode (restore to defaults)", + "category": "PowerShell" + }, + { + "command": "PowerShell.ToggleISEMode", + "title": "Toggle ISE Mode", + "category": "PowerShell" + }, + { + "command": "PowerShell.RefreshCommandsExplorer", + "title": "Refresh Command Explorer", + "category": "PowerShell", + "icon": "$(sync)" + }, + { + "command": "PowerShell.InsertCommand", + "title": "Insert Command", + "category": "PowerShell", + "icon": "$(pencil)" + }, + { + "command": "PowerShell.ShowHelp", + "title": "Get Help for Command", + "category": "PowerShell", + "icon": "$(question)" + }, + { + "command": "PowerShell.Debug.Start", + "title": "Run", + "category": "PowerShell", + "icon": "$(run)" + }, + { + "command": "PowerShell.RunSelection", + "title": "Run Selection", + "category": "PowerShell", + "icon": "$(debug-line-by-line)" + }, + { + "command": "PowerShell.RestartSession", + "title": "Restart Session", + "category": "PowerShell" + }, + { + "command": "PowerShell.ShowLogs", + "title": "Show PowerShell Extension Logs", + "category": "PowerShell" + }, + { + "command": "PowerShell.OpenLogFolder", + "title": "Open PowerShell Extension Logs Folder", + "category": "PowerShell" + }, + { + "command": "PowerShell.GenerateBugReport", + "title": "Upload Bug Report to GitHub", + "category": "PowerShell" + }, + { + "command": "PowerShell.OpenInISE", + "title": "Open Current File in PowerShell ISE", + "category": "PowerShell" + }, + { + "command": "PowerShell.PowerShellFindModule", + "title": "Find/Install PowerShell Modules from the Gallery", + "category": "PowerShell", + "deprecationMessage": "This feature is no longer available, we're sorry!" + }, + { + "command": "PowerShell.ShowAdditionalCommands", + "title": "Show Additional Commands from PowerShell Modules", + "category": "PowerShell" + }, + { + "command": "PowerShell.ShowSessionMenu", + "title": "Show Session Menu", + "category": "PowerShell" + }, + { + "command": "PowerShell.ShowSessionConsole", + "title": "Show Extension Terminal", + "category": "PowerShell" + }, + { + "command": "PowerShell.NewProjectFromTemplate", + "title": "Create New Project from Plaster Template", + "category": "PowerShell" + }, + { + "command": "PowerShell.RunPesterTestsFromFile", + "title": "Run Pester tests", + "category": "PowerShell" + }, + { + "command": "PowerShell.DebugPesterTestsFromFile", + "title": "Debug Pester tests", + "category": "PowerShell" + }, + { + "command": "PowerShell.OpenExamplesFolder", + "title": "Open Examples Folder", + "category": "PowerShell" + }, + { + "command": "PowerShell.InvokeRegisteredEditorCommand", + "title": "Invoke Registered Editor Command", + "category": "PowerShell" + }, + { + "command": "PowerShell.WalkthroughTelemetry", + "title": "Walkthrough Telemetry", + "category": "PowerShell" + }, + { + "command": "PowerShell.ClosePanel", + "title": "Close panel", + "category": "PowerShell" + }, + { + "command": "PowerShell.PositionPanelLeft", + "title": "Move panel left", + "category": "PowerShell", + "icon": "$(layout-sidebar-left)" + }, + { + "command": "PowerShell.PositionPanelBottom", + "title": "Move panel to bottom", + "category": "PowerShell", + "icon": "$(layout-panel-right)" + } + ] + }, + { + "source": "test-adapter-converter", + "version": "0.1.7", + "commands": [ + { + "command": "testExplorerConverter.useNativeTesting", + "title": "Use Native Testing" + }, + { + "command": "testExplorerConverter.activate", + "title": "Activate Test Adapter Converter" + } + ] + }, + { + "source": "smart-command", + "version": "0.0.1", + "commands": [ + { + "command": "smart-command.NLPSearch", + "title": "NLPSearch" + } + ] + } + ], + "builtin_commands": [ + { + "command": "99cb0b7f-7354-4278-b8da-6cc79972169d", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\product.json" + }, + { + "command": "25629058-ddac-4e17-abba-74678e126c5d", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\product.json" + }, + { + "command": "7e52b41b-71ad-457b-ab7e-0620f1fc4feb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\product.json" + }, + { + "command": "bat", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\bat\\package.json" + }, + { + "command": "clojure", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\clojure\\package.json" + }, + { + "command": "coffeescript", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\coffeescript\\package.json" + }, + { + "command": "jsonc", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-basics\\package.json" + }, + { + "command": "json", + "title": "JSON", + "category": "JSON", + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-basics\\package.json" + }, + { + "command": "c", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "cpp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\cpp\\package.json" + }, + { + "command": "cuda-cpp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\cpp\\package.json" + }, + { + "command": "csharp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\csharp\\package.json" + }, + { + "command": "css", + "title": "%css.title%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\css-language-features\\package.json" + }, + { + "command": "scss", + "title": "%scss.title%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\scss\\package.json" + }, + { + "command": "less", + "title": "%less.title%", + "category": null, + "source": "less", + "file_path": "vscode_cloned\\extensions\\less\\package.json" + }, + { + "command": "dart", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\dart\\package.json" + }, + { + "command": "extension.node-debug.toggleAutoAttach", + "title": "%toggle.auto.attach%", + "category": "Debug", + "source": null, + "file_path": "vscode_cloned\\extensions\\debug-auto-launch\\package.json" + }, + { + "command": "diff", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\diff\\package.json" + }, + { + "command": "dockerfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\docker\\package.json" + }, + { + "command": "editor.emmet.action.wrapWithAbbreviation", + "title": "%command.showEmmetCommands%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.removeTag", + "title": "%command.wrapWithAbbreviation%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.updateTag", + "title": "%command.removeTag%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.matchTag", + "title": "%command.updateTag%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.balanceIn", + "title": "%command.matchTag%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.balanceOut", + "title": "%command.balanceIn%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.prevEditPoint", + "title": "%command.balanceOut%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.nextEditPoint", + "title": "%command.prevEditPoint%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.mergeLines", + "title": "%command.nextEditPoint%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.selectPrevItem", + "title": "%command.mergeLines%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.selectNextItem", + "title": "%command.selectPrevItem%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.splitJoinTag", + "title": "%command.selectNextItem%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.toggleComment", + "title": "%command.splitJoinTag%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.evaluateMathExpression", + "title": "%command.toggleComment%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.updateImageSize", + "title": "%command.evaluateMathExpression%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.incrementNumberByOneTenth", + "title": "%command.updateImageSize%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.incrementNumberByOne", + "title": "%command.incrementNumberByOneTenth%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.incrementNumberByTen", + "title": "%command.incrementNumberByOne%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.decrementNumberByOneTenth", + "title": "%command.incrementNumberByTen%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.decrementNumberByOne", + "title": "%command.decrementNumberByOneTenth%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.decrementNumberByTen", + "title": "%command.decrementNumberByOne%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "editor.emmet.action.reflectCSSValue", + "title": "%command.decrementNumberByTen%", + "category": "Emmet", + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "workbench.action.showEmmetCommands", + "title": "%command.reflectCSSValue%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\emmet\\package.json" + }, + { + "command": "ignore", + "title": "%command.run%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\npm\\package.json" + }, + { + "command": "fsharp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\fsharp\\package.json" + }, + { + "command": "git.continueInLocalClone", + "title": "Git", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.clone", + "title": "%command.clone%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.cloneRecursive", + "title": "%command.cloneRecursive%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.init", + "title": "%command.init%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.openRepository", + "title": "%command.openRepository%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.close", + "title": "%command.close%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.refresh", + "title": "%command.refresh%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.openChange", + "title": "%command.openChange%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.openAllChanges", + "title": "%command.openAllChanges%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.openFile", + "title": "%command.openFile%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.openFile2", + "title": "%command.openFile%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.openHEADFile", + "title": "%command.openHEADFile%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stage", + "title": "%command.stage%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stageAll", + "title": "%command.stageAll%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stageAllTracked", + "title": "%command.stageAllTracked%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stageAllUntracked", + "title": "%command.stageAllUntracked%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stageAllMerge", + "title": "%command.stageAllMerge%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stageSelectedRanges", + "title": "%command.stageSelectedRanges%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.revertSelectedRanges", + "title": "%command.revertSelectedRanges%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stageChange", + "title": "%command.stageChange%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.revertChange", + "title": "%command.revertChange%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.unstage", + "title": "%command.unstage%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.unstageAll", + "title": "%command.unstageAll%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.unstageSelectedRanges", + "title": "%command.unstageSelectedRanges%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.clean", + "title": "%command.clean%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.cleanAll", + "title": "%command.cleanAll%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.cleanAllTracked", + "title": "%command.cleanAllTracked%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.cleanAllUntracked", + "title": "%command.cleanAllUntracked%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.rename", + "title": "%command.rename%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commit", + "title": "%command.commit%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitStaged", + "title": "%command.commitStaged%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitEmpty", + "title": "%command.commitEmpty%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitStagedSigned", + "title": "%command.commitStagedSigned%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitStagedAmend", + "title": "%command.commitStagedAmend%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitAll", + "title": "%command.commitAll%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitAllSigned", + "title": "%command.commitAllSigned%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitAllAmend", + "title": "%command.commitAllAmend%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitNoVerify", + "title": "%command.commitNoVerify%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitStagedNoVerify", + "title": "%command.commitStagedNoVerify%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitEmptyNoVerify", + "title": "%command.commitEmptyNoVerify%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitStagedSignedNoVerify", + "title": "%command.commitStagedSignedNoVerify%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitStagedAmendNoVerify", + "title": "%command.commitStagedAmendNoVerify%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitAllNoVerify", + "title": "%command.commitAllNoVerify%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitAllSignedNoVerify", + "title": "%command.commitAllSignedNoVerify%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitAllAmendNoVerify", + "title": "%command.commitAllAmendNoVerify%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitMessageAccept", + "title": "%command.commitMessageAccept%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.commitMessageDiscard", + "title": "%command.commitMessageDiscard%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.restoreCommitTemplate", + "title": "%command.restoreCommitTemplate%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.undoCommit", + "title": "%command.undoCommit%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.checkout", + "title": "%command.checkout%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.checkoutDetached", + "title": "%command.checkoutDetached%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.branch", + "title": "%command.branch%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.branchFrom", + "title": "%command.branchFrom%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.deleteBranch", + "title": "%command.deleteBranch%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.renameBranch", + "title": "%command.renameBranch%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.merge", + "title": "%command.merge%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.mergeAbort", + "title": "%command.mergeAbort%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.rebase", + "title": "%command.rebase%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.createTag", + "title": "%command.createTag%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.deleteTag", + "title": "%command.deleteTag%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.deleteRemoteTag", + "title": "%command.deleteRemoteTag%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.fetch", + "title": "%command.fetch%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.fetchPrune", + "title": "%command.fetchPrune%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.fetchAll", + "title": "%command.fetchAll%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.pull", + "title": "%command.pull%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.pullRebase", + "title": "%command.pullRebase%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.pullFrom", + "title": "%command.pullFrom%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.push", + "title": "%command.push%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.pushForce", + "title": "%command.pushForce%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.pushTo", + "title": "%command.pushTo%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.pushToForce", + "title": "%command.pushToForce%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.pushTags", + "title": "%command.pushTags%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.pushWithTags", + "title": "%command.pushFollowTags%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.pushWithTagsForce", + "title": "%command.pushFollowTagsForce%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.cherryPick", + "title": "%command.cherryPick%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.addRemote", + "title": "%command.addRemote%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.removeRemote", + "title": "%command.removeRemote%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.sync", + "title": "%command.sync%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.syncRebase", + "title": "%command.syncRebase%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.publish", + "title": "%command.publish%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.showOutput", + "title": "%command.showOutput%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.ignore", + "title": "%command.ignore%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.revealInExplorer", + "title": "%command.revealInExplorer%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.revealFileInOS.linux", + "title": "%command.revealFileInOS.linux%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.revealFileInOS.mac", + "title": "%command.revealFileInOS.mac%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.revealFileInOS.windows", + "title": "%command.revealFileInOS.windows%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stashIncludeUntracked", + "title": "%command.stashIncludeUntracked%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stash", + "title": "%command.stash%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stashStaged", + "title": "%command.stashStaged%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stashPop", + "title": "%command.stashPop%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stashPopLatest", + "title": "%command.stashPopLatest%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stashApply", + "title": "%command.stashApply%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stashApplyLatest", + "title": "%command.stashApplyLatest%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stashDrop", + "title": "%command.stashDrop%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.stashDropAll", + "title": "%command.stashDropAll%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.timeline.openDiff", + "title": "%command.timelineOpenDiff%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.timeline.copyCommitId", + "title": "%command.timelineCopyCommitId%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.timeline.copyCommitMessage", + "title": "%command.timelineCopyCommitMessage%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.timeline.selectForCompare", + "title": "%command.timelineSelectForCompare%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.timeline.compareWithSelected", + "title": "%command.timelineCompareWithSelected%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.rebaseAbort", + "title": "%command.rebaseAbort%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.closeAllDiffEditors", + "title": "%command.closeAllDiffEditors%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.api.getRepositories", + "title": "%command.api.getRepositories%", + "category": "Git API", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.api.getRepositoryState", + "title": "%command.api.getRepositoryState%", + "category": "Git API", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.api.getRemoteSources", + "title": "%command.api.getRemoteSources%", + "category": "Git API", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.acceptMerge", + "title": "%command.git.acceptMerge%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.openMergeEditor", + "title": "%command.git.openMergeEditor%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.runGitMerge", + "title": "%command.git.runGitMerge%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.runGitMergeDiff3", + "title": "%command.git.runGitMergeDiff3%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.manageUnsafeRepositories", + "title": "%command.manageUnsafeRepositories%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.openRepositoriesInParentFolders", + "title": "%command.openRepositoriesInParentFolders%", + "category": "Git", + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.changes", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.pullpush", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.remotes", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "git.tags", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "gitDecoration.addedResourceForeground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "gitDecoration.modifiedResourceForeground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "gitDecoration.deletedResourceForeground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "gitDecoration.renamedResourceForeground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "gitDecoration.untrackedResourceForeground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "gitDecoration.ignoredResourceForeground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "gitDecoration.stageModifiedResourceForeground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "gitDecoration.stageDeletedResourceForeground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "gitDecoration.conflictingResourceForeground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "gitDecoration.submoduleResourceForeground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\package.json" + }, + { + "command": "\ud83c\udd94", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git\\resources\\emojis.json" + }, + { + "command": "git-base.api.getRemoteSources", + "title": "%command.api.getRemoteSources%", + "category": "Git Base API", + "source": null, + "file_path": "vscode_cloned\\extensions\\git-base\\package.json" + }, + { + "command": "git-commit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git-base\\package.json" + }, + { + "command": "git-rebase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\git-base\\package.json" + }, + { + "command": "github.publish", + "title": "Publish to GitHub", + "category": "Remote Repositories", + "source": null, + "file_path": "vscode_cloned\\extensions\\github\\package.json" + }, + { + "command": "github.copyVscodeDevLink", + "title": "Copy vscode.dev Link", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\github\\package.json" + }, + { + "command": "github.copyVscodeDevLinkFile", + "title": "Copy vscode.dev Link", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\github\\package.json" + }, + { + "command": "github.copyVscodeDevLinkWithoutRange", + "title": "Copy vscode.dev Link", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\github\\package.json" + }, + { + "command": "github.openOnVscodeDev", + "title": "GitHub", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\github\\package.json" + }, + { + "command": "github", + "title": "GitHub Enterprise Server Authentication Provider", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\github-authentication\\package.json" + }, + { + "command": "github-enterprise", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\github-authentication\\package.json" + }, + { + "command": "go", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\go\\package.json" + }, + { + "command": "groovy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\groovy\\package.json" + }, + { + "command": "grunt", + "title": "Grunt", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "gulp", + "title": "Gulp", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "handlebars", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\emmet\\test\\browser\\emmetAction.test.ts" + }, + { + "command": "hlsl", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\hlsl\\package.json" + }, + { + "command": "html", + "title": "HTML", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\html-language-features\\package.json" + }, + { + "command": "ini", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\ini\\package.json" + }, + { + "command": "properties", + "title": "%command.debug%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\npm\\package.json" + }, + { + "command": "ipynb.newUntitledIpynb", + "title": "%newUntitledIpynb.title%", + "category": "Create", + "source": null, + "file_path": "vscode_cloned\\extensions\\ipynb\\package.json" + }, + { + "command": "ipynb.openIpynbInNotebookEditor", + "title": "%openIpynbInNotebookEditor.title%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\ipynb\\package.json" + }, + { + "command": "ipynb.cleanInvalidImageAttachment", + "title": "%cleanInvalidImageAttachment.title%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\ipynb\\package.json" + }, + { + "command": "vscode.markdown-it-cell-attachment-renderer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\ipynb\\package.json" + }, + { + "command": "jake", + "title": "Jake", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\jake\\package.json" + }, + { + "command": "java", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\java\\package.json" + }, + { + "command": "javascriptreact", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\javascript\\package.json" + }, + { + "command": "javascript", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\src\\configuration\\languageDescription.ts" + }, + { + "command": "jsx-tags", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\javascript\\package.json" + }, + { + "command": "json.clearCache", + "title": "%json.command.clearCache%", + "category": "JSON", + "source": null, + "file_path": "vscode_cloned\\extensions\\json-language-features\\package.json" + }, + { + "command": "json.sort", + "title": "%json.command.sort%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\json-language-features\\package.json" + }, + { + "command": "julia", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\julia\\package.json" + }, + { + "command": "juliamarkdown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\julia\\package.json" + }, + { + "command": "tex", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\latex\\package.json" + }, + { + "command": "latex", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\latex\\package.json" + }, + { + "command": "bibtex", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\latex\\package.json" + }, + { + "command": "cpp_embedded_latex", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\latex\\package.json" + }, + { + "command": "markdown_latex_combined", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\latex\\package.json" + }, + { + "command": "log", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\log\\package.json" + }, + { + "command": "lua", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\lua\\package.json" + }, + { + "command": "makefile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\make\\package.json" + }, + { + "command": "markdown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\emmet\\test\\browser\\emmetAction.test.ts" + }, + { + "command": "vscode.markdown-it-renderer", + "title": "%markdown.preview.title%", + "category": "Markdown", + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-language-features\\package.json" + }, + { + "command": "markdown.showPreview", + "title": "%markdown.previewSide.title%", + "category": "Markdown", + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-language-features\\package.json" + }, + { + "command": "markdown.showPreviewToSide", + "title": "%markdown.showLockedPreviewToSide.title%", + "category": "Markdown", + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-language-features\\package.json" + }, + { + "command": "markdown.showLockedPreviewToSide", + "title": "%markdown.showSource.title%", + "category": "Markdown", + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-language-features\\package.json" + }, + { + "command": "markdown.showSource", + "title": "%markdown.showPreviewSecuritySelector.title%", + "category": "Markdown", + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-language-features\\package.json" + }, + { + "command": "markdown.showPreviewSecuritySelector", + "title": "%markdown.preview.refresh.title%", + "category": "Markdown", + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-language-features\\package.json" + }, + { + "command": "markdown.preview.refresh", + "title": "%markdown.preview.toggleLock.title%", + "category": "Markdown", + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-language-features\\package.json" + }, + { + "command": "markdown.preview.toggleLock", + "title": "%markdown.findAllFileReferences%", + "category": "Markdown", + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-language-features\\package.json" + }, + { + "command": "markdown.findAllFileReferences", + "title": "%markdown.editor.insertLinkFromWorkspace%", + "category": "Markdown", + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-language-features\\package.json" + }, + { + "command": "markdown.editor.insertLinkFromWorkspace", + "title": "%markdown.editor.insertImageFromWorkspace%", + "category": "Markdown", + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-language-features\\package.json" + }, + { + "command": "markdown.editor.insertImageFromWorkspace", + "title": "Markdown", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-language-features\\package.json" + }, + { + "command": "markdown-math", + "title": "Markdown Math", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-math\\package.json" + }, + { + "command": "vscode.markdown-it-katex-extension", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\markdown-math\\package.json" + }, + { + "command": "imagePreview.zoomIn", + "title": "%command.zoomIn%", + "category": "Image Preview", + "source": null, + "file_path": "vscode_cloned\\extensions\\media-preview\\package.json" + }, + { + "command": "imagePreview.zoomOut", + "title": "%command.zoomOut%", + "category": "Image Preview", + "source": null, + "file_path": "vscode_cloned\\extensions\\media-preview\\package.json" + }, + { + "command": "merge-conflict.accept.all-current", + "title": "%command.accept.selection%", + "category": "%command.category%", + "source": null, + "file_path": "vscode_cloned\\extensions\\merge-conflict\\package.json" + }, + { + "command": "merge-conflict.accept.all-incoming", + "title": "Accept Selection", + "category": "%command.category%", + "source": null, + "file_path": "vscode_cloned\\extensions\\merge-conflict\\package.json" + }, + { + "command": "merge-conflict.accept.all-both", + "title": "%command.accept.all-incoming%", + "category": "%command.category%", + "source": null, + "file_path": "vscode_cloned\\extensions\\merge-conflict\\package.json" + }, + { + "command": "merge-conflict.accept.current", + "title": "Accept All Incoming", + "category": "%command.category%", + "source": null, + "file_path": "vscode_cloned\\extensions\\merge-conflict\\package.json" + }, + { + "command": "merge-conflict.accept.incoming", + "title": "%command.accept.all-both%", + "category": "%command.category%", + "source": null, + "file_path": "vscode_cloned\\extensions\\merge-conflict\\package.json" + }, + { + "command": "merge-conflict.accept.selection", + "title": "Accept All Both", + "category": "%command.category%", + "source": null, + "file_path": "vscode_cloned\\extensions\\merge-conflict\\package.json" + }, + { + "command": "merge-conflict.accept.both", + "title": "%command.accept.current%", + "category": "%command.category%", + "source": null, + "file_path": "vscode_cloned\\extensions\\merge-conflict\\package.json" + }, + { + "command": "merge-conflict.next", + "title": "Accept Both", + "category": "%command.category%", + "source": null, + "file_path": "vscode_cloned\\extensions\\merge-conflict\\package.json" + }, + { + "command": "merge-conflict.previous", + "title": "%command.accept.both%", + "category": "%command.category%", + "source": null, + "file_path": "vscode_cloned\\extensions\\merge-conflict\\package.json" + }, + { + "command": "merge-conflict.compare", + "title": "Accept Incoming", + "category": "%command.category%", + "source": null, + "file_path": "vscode_cloned\\extensions\\merge-conflict\\package.json" + }, + { + "command": "microsoft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\microsoft-authentication\\package.json" + }, + { + "command": "vscode.builtin-renderer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\notebook-renderers\\package.json" + }, + { + "command": "npm", + "title": "%command.openScript%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "npm.runScript", + "title": "%command.runInstall%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\npm\\package.json" + }, + { + "command": "npm.debugScript", + "title": "%command.refresh%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\npm\\package.json" + }, + { + "command": "npm.openScript", + "title": "%command.runSelectedScript%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\npm\\package.json" + }, + { + "command": "npm.runInstall", + "title": "%command.runScriptFromFolder%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\npm\\package.json" + }, + { + "command": "npm.refresh", + "title": "%command.packageManager%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\npm\\package.json" + }, + { + "command": "npm.runSelectedScript", + "title": "Npm", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\npm\\package.json" + }, + { + "command": "npm.runScriptFromFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\npm\\package.json" + }, + { + "command": "npm.packageManager", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\npm\\package.json" + }, + { + "command": "ms-vscode.npm-command", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\npm\\package.json" + }, + { + "command": "objective-c", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\objective-c\\package.json" + }, + { + "command": "objective-cpp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\objective-c\\package.json" + }, + { + "command": "perl", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\perl\\package.json" + }, + { + "command": "perl6", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\perl\\package.json" + }, + { + "command": "php", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\php\\package.json" + }, + { + "command": "powershell", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\powershell\\package.json" + }, + { + "command": "jade", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\pug\\package.json" + }, + { + "command": "python", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\python\\package.json" + }, + { + "command": "r", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\r\\package.json" + }, + { + "command": "razor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\razor\\package.json" + }, + { + "command": "references-view", + "title": "%container.title%", + "category": "%cmd.category.references%", + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.tree", + "title": "%cmd.references-view.findReferences%", + "category": "%cmd.category.references%", + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.findReferences", + "title": "%cmd.references-view.findImplementations%", + "category": "%cmd.category.references%", + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.findImplementations", + "title": "%cmd.references-view.clearHistory%", + "category": "%cmd.category.references%", + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.clearHistory", + "title": "%cmd.references-view.clear%", + "category": "%cmd.category.references%", + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.clear", + "title": "%cmd.references-view.refresh%", + "category": "%cmd.category.references%", + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.refresh", + "title": "%cmd.references-view.pickFromHistory%", + "category": "Calls", + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.pickFromHistory", + "title": "%cmd.references-view.removeReferenceItem%", + "category": "Calls", + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.removeReferenceItem", + "title": "%cmd.references-view.copy%", + "category": "Calls", + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.copy", + "title": "%cmd.references-view.copyAll%", + "category": "Types", + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.copyAll", + "title": "%cmd.references-view.copyPath%", + "category": "Types", + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.copyPath", + "title": "%cmd.references-view.refind%", + "category": "Types", + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.refind", + "title": "%cmd.references-view.showCallHierarchy%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.showCallHierarchy", + "title": "%cmd.references-view.showOutgoingCalls%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.showOutgoingCalls", + "title": "%cmd.references-view.showIncomingCalls%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.showIncomingCalls", + "title": "%cmd.references-view.removeCallItem%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.removeCallItem", + "title": "%cmd.references-view.next%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.next", + "title": "%cmd.references-view.prev%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.prev", + "title": "%cmd.references-view.showTypeHierarchy%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.showTypeHierarchy", + "title": "%cmd.references-view.showSupertypes%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.showSupertypes", + "title": "%cmd.references-view.showSubtypes%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.showSubtypes", + "title": "%cmd.references-view.removeTypeItem%", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "references-view.removeTypeItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\references-view\\package.json" + }, + { + "command": "restructuredtext", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\restructuredtext\\package.json" + }, + { + "command": "ruby", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\ruby\\package.json" + }, + { + "command": "rust", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\rust\\package.json" + }, + { + "command": "search-result", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\search-result\\package.json" + }, + { + "command": "shaderlab", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\shaderlab\\package.json" + }, + { + "command": "shellscript", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\shellscript\\package.json" + }, + { + "command": "simpleBrowser.show", + "title": "Show", + "category": "Simple Browser", + "source": null, + "file_path": "vscode_cloned\\extensions\\simple-browser\\package.json" + }, + { + "command": "sql", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\standalone\\test\\browser\\monarch.test.ts" + }, + { + "command": "swift", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\swift\\package.json" + }, + { + "command": "Abyss", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-abyss\\package.json" + }, + { + "command": "Default Dark+", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-defaults\\package.json" + }, + { + "command": "Default Dark+ Experimental", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-defaults\\package.json" + }, + { + "command": "Default Light+", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-defaults\\package.json" + }, + { + "command": "Default Light+ Experimental", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-defaults\\package.json" + }, + { + "command": "Visual Studio Dark", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-defaults\\package.json" + }, + { + "command": "Visual Studio Light", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-defaults\\package.json" + }, + { + "command": "Default High Contrast", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-defaults\\package.json" + }, + { + "command": "Default High Contrast Light", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-defaults\\package.json" + }, + { + "command": "vs-minimal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-defaults\\package.json" + }, + { + "command": "Kimbie Dark", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-kimbie-dark\\package.json" + }, + { + "command": "Monokai", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-monokai\\package.json" + }, + { + "command": "Monokai Dimmed", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-monokai-dimmed\\package.json" + }, + { + "command": "Quiet Light", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-quietlight\\package.json" + }, + { + "command": "Red", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-red\\package.json" + }, + { + "command": "vs-seti", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-seti\\package.json" + }, + { + "command": "seti", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-seti\\icons\\vs-seti-icon-theme.json" + }, + { + "command": "Solarized Dark", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-solarized-dark\\package.json" + }, + { + "command": "Solarized Light", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-solarized-light\\package.json" + }, + { + "command": "Tomorrow Night Blue", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\theme-tomorrow-night-blue\\package.json" + }, + { + "command": "typescript", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\src\\configuration\\languageDescription.ts" + }, + { + "command": "typescriptreact", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-basics\\package.json" + }, + { + "command": "typescript.reloadProjects", + "title": "%codeActions.refactor.extract.constant.title%", + "category": "TypeScript", + "source": "ts", + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "javascript.reloadProjects", + "title": "%codeActions.refactor.extract.interface.title%", + "category": "JavaScript", + "source": "ts", + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "typescript.selectTypeScriptVersion", + "title": "%codeActions.refactor.rewrite.parameters.toDestructured.title%", + "category": "TypeScript", + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "typescript.goToProjectConfig", + "title": "%codeActions.refactor.rewrite.import.title%", + "category": "TypeScript", + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "javascript.goToProjectConfig", + "title": "%codeActions.refactor.rewrite.arrow.braces.title%", + "category": "JavaScript", + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "typescript.openTsServerLog", + "title": "%codeActions.refactor.rewrite.property.generateAccessors.title%", + "category": "TypeScript", + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "typescript.restartTsServer", + "title": "%codeActions.refactor.move.newFile.title%", + "category": "TypeScript", + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "typescript.findAllFileReferences", + "title": "%codeActions.source.organizeImports.title%", + "category": "TypeScript", + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "typescript.goToSourceDefinition", + "title": "%walkthroughs.nodejsWelcome.learnMoreAboutJs.title%", + "category": "TypeScript", + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "typescript.sortImports", + "title": "%walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.title%", + "category": "TypeScript", + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "javascript.sortImports", + "title": "%walkthroughs.nodejsWelcome.downloadNode.forLinux.title%", + "category": "JavaScript", + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "typescript.removeUnusedImports", + "title": "%walkthroughs.nodejsWelcome.makeJsFile.title%", + "category": "TypeScript", + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "javascript.removeUnusedImports", + "title": "%walkthroughs.nodejsWelcome.debugJsFile.title%", + "category": "JavaScript", + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "nodejsWelcome", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "walkthroughs.nodejsWelcome.downloadNode.forLinux", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "walkthroughs.nodejsWelcome.makeJsFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "walkthroughs.nodejsWelcome.debugJsFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "walkthroughs.nodejsWelcome.learnMoreAboutJs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\package.json" + }, + { + "command": "vb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\vb\\package.json" + }, + { + "command": "test.treeId", + "title": "Test Config", + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\vscode-api-tests\\package.json" + }, + { + "command": "testToken", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\vscode-colorize-tests\\package.json" + }, + { + "command": "testModifier", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\vscode-colorize-tests\\package.json" + }, + { + "command": "Test Product Icons", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\vscode-colorize-tests\\package.json" + }, + { + "command": "elegant", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\vscode-colorize-tests\\producticons\\test-product-icon-theme.json" + }, + { + "command": "vscode-testresolver.newWindow", + "title": "New TestResolver Window", + "category": "Remote-TestResolver", + "source": null, + "file_path": "vscode_cloned\\extensions\\vscode-test-resolver\\package.json" + }, + { + "command": "vscode-testresolver.currentWindow", + "title": "Connect to TestResolver in Current Window", + "category": "Remote-TestResolver", + "source": null, + "file_path": "vscode_cloned\\extensions\\vscode-test-resolver\\package.json" + }, + { + "command": "vscode-testresolver.showLog", + "title": "Show TestResolver Log", + "category": "Remote-TestResolver", + "source": null, + "file_path": "vscode_cloned\\extensions\\vscode-test-resolver\\package.json" + }, + { + "command": "vscode-testresolver.killServerAndTriggerHandledError", + "title": "Kill Remote Server and Trigger Handled Error", + "category": "Remote-TestResolver", + "source": null, + "file_path": "vscode_cloned\\extensions\\vscode-test-resolver\\package.json" + }, + { + "command": "vscode-testresolver.openTunnel", + "title": "Open Tunnel...", + "category": "Remote-TestResolver", + "source": null, + "file_path": "vscode_cloned\\extensions\\vscode-test-resolver\\package.json" + }, + { + "command": "vscode-testresolver.startRemoteServer", + "title": "Open a Remote Port...", + "category": "Remote-TestResolver", + "source": null, + "file_path": "vscode_cloned\\extensions\\vscode-test-resolver\\package.json" + }, + { + "command": "vscode-testresolver.toggleConnectionPause", + "title": "Pause Connection (Test Reconnect)", + "category": "Remote-TestResolver", + "source": null, + "file_path": "vscode_cloned\\extensions\\vscode-test-resolver\\package.json" + }, + { + "command": "xml", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\xml\\package.json" + }, + { + "command": "xsl", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\xml\\package.json" + }, + { + "command": "dockercompose", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\yaml\\package.json" + }, + { + "command": "yaml", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\yaml\\package.json" + }, + { + "command": "zh-tw", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\build\\lib\\i18n.ts" + }, + { + "command": "zh-cn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\build\\lib\\i18n.ts" + }, + { + "command": "ja", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\build\\lib\\i18n.ts" + }, + { + "command": "ko", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\build\\lib\\i18n.ts" + }, + { + "command": "de", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\build\\lib\\i18n.ts" + }, + { + "command": "fr", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\build\\lib\\i18n.ts" + }, + { + "command": "es", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\build\\lib\\i18n.ts" + }, + { + "command": "ru", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\build\\lib\\i18n.ts" + }, + { + "command": "it", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\build\\lib\\i18n.ts" + }, + { + "command": "pt-br", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\build\\lib\\i18n.ts" + }, + { + "command": "hu", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\build\\lib\\i18n.ts" + }, + { + "command": "tr", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\build\\lib\\i18n.ts" + }, + { + "command": "vscode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\test\\browser\\extensionEnablementService.test.ts" + }, + { + "command": "123", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\ipynb\\src\\test\\serializers.test.ts" + }, + { + "command": "typescript-plugins", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\extensions\\typescript-language-features\\src\\typeScriptServiceClientHost.ts" + }, + { + "command": "1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "public", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\remote\\browser\\tunnelFactory.ts" + }, + { + "command": "other", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "private", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\remote\\browser\\tunnelFactory.ts" + }, + { + "command": "root", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "demospan", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\base\\test\\browser\\dom.test.ts" + }, + { + "command": "a", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "aa", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\base\\test\\browser\\ui\\tree\\asyncDataTree.test.ts" + }, + { + "command": "ab", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\base\\test\\browser\\ui\\tree\\asyncDataTree.test.ts" + }, + { + "command": "ac", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\base\\test\\browser\\ui\\tree\\asyncDataTree.test.ts" + }, + { + "command": "b", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "debug.startFromConfig", + "title": "jumpToCursor', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "_moveTo", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "_moveToSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "columnSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorColumnSelectLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorColumnSelectRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorColumnSelectUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorColumnSelectPageUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorColumnSelectDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorColumnSelectPageDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorMove", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorLeftSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorRightSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorUpSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorPageUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorPageUpSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorDownSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorPageDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorPageDownSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "createCursor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "_lastCursorMoveToSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorHome", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorHomeSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorLineStart", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorLineStartSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorEnd", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorEndSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorLineEnd", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorLineEndSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorTop", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorTopSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorBottom", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cursorBottomSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "editorScroll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "scrollLineUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "scrollPageUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "scrollEditorTop", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "scrollLineDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "scrollPageDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "scrollEditorBottom", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "scrollLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "scrollRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "_wordSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "_wordSelectDrag", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "lastCursorWordSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "_lineSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "_lineSelectDrag", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "lastCursorLineSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "lastCursorLineSelectDrag", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "cancelSelection", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "removeSecondaryCursors", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "revealLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "setSelection", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "lineBreakInsert", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "outdent", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "tab", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "deleteLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "deleteRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\coreCommands.ts" + }, + { + "command": "undo", + "title": "undo', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\editorExtensions.ts" + }, + { + "command": "default:undo", + "title": "redo', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\editorExtensions.ts" + }, + { + "command": "redo", + "title": "selectAll', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\editorExtensions.ts" + }, + { + "command": "default:redo", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\editorExtensions.ts" + }, + { + "command": "editor.action.selectAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\editorExtensions.ts" + }, + { + "command": "editor.action.diffReview.next", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\widget\\diffReview.ts" + }, + { + "command": "editor.action.diffReview.prev", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\browser\\widget\\diffReview.ts" + }, + { + "command": "editor", + "title": "editorConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\themes\\common\\themeConfiguration.ts" + }, + { + "command": "unknown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\common\\services\\languagesAssociations.ts" + }, + { + "command": "editor.action.setSelectionAnchor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\anchorSelect\\browser\\anchorSelect.ts" + }, + { + "command": "editor.action.goToSelectionAnchor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\anchorSelect\\browser\\anchorSelect.ts" + }, + { + "command": "editor.action.selectFromAnchorToCursor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\anchorSelect\\browser\\anchorSelect.ts" + }, + { + "command": "editor.action.cancelSelectionAnchor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\anchorSelect\\browser\\anchorSelect.ts" + }, + { + "command": "editor.action.jumpToBracket", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\bracketMatching\\browser\\bracketMatching.ts" + }, + { + "command": "editor.action.selectToBracket", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\bracketMatching\\browser\\bracketMatching.ts" + }, + { + "command": "editor.action.removeBrackets", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\bracketMatching\\browser\\bracketMatching.ts" + }, + { + "command": "editor.action.moveCarretLeftAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\caretOperations\\browser\\caretOperations.ts" + }, + { + "command": "editor.action.moveCarretRightAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\caretOperations\\browser\\caretOperations.ts" + }, + { + "command": "editor.action.transposeLetters", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\caretOperations\\browser\\transpose.ts" + }, + { + "command": "editor.action.clipboardCutAction", + "title": "actions.clipboard.cutLabel', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\clipboard\\browser\\clipboard.ts" + }, + { + "command": "editor.action.clipboardCopyAction", + "title": "actions.clipboard.cutLabel', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\clipboard\\browser\\clipboard.ts" + }, + { + "command": "editor.action.clipboardPasteAction", + "title": "actions.clipboard.cutLabel', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\clipboard\\browser\\clipboard.ts" + }, + { + "command": "editor.action.clipboardCopyWithSyntaxHighlightingAction", + "title": "actions.clipboard.copyLabel', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\clipboard\\browser\\clipboard.ts" + }, + { + "command": "hideMoreActions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\codeAction\\browser\\codeActionUi.ts" + }, + { + "command": "showMoreActions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\codeAction\\browser\\codeActionUi.ts" + }, + { + "command": "_internal_command_delegation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\codeAction\\test\\browser\\codeAction.test.ts" + }, + { + "command": "test-command", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\codeAction\\test\\browser\\codeActionModel.test.ts" + }, + { + "command": "codelens.showLensesInCurrentLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\codelens\\browser\\codelensController.ts" + }, + { + "command": "editor.action.commentLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\comment\\browser\\comment.ts" + }, + { + "command": "editor.action.addCommentLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\comment\\browser\\comment.ts" + }, + { + "command": "editor.action.removeCommentLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\comment\\browser\\comment.ts" + }, + { + "command": "editor.action.blockComment", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\comment\\browser\\comment.ts" + }, + { + "command": "editor.action.showContextMenu", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\contextmenu\\browser\\contextmenu.ts" + }, + { + "command": "cursorUndo", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\cursorUndo\\browser\\cursorUndo.ts" + }, + { + "command": "cursorRedo", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\cursorUndo\\browser\\cursorUndo.ts" + }, + { + "command": "editor.cancelOperation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\editorState\\browser\\keybindingCancellation.ts" + }, + { + "command": "editor.unfold", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.unfoldRecursively", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.fold", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.toggleFold", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.foldRecursively", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.foldAllBlockComments", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.foldAllMarkerRegions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.unfoldAllMarkerRegions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.foldAllExcept", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.unfoldAllExcept", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.foldAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.unfoldAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.gotoParentFold", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.gotoPreviousFold", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.gotoNextFold", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.createFoldingRangeFromSelection", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.removeManualFoldingRanges", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\folding\\browser\\folding.ts" + }, + { + "command": "editor.action.fontZoomIn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\fontZoom\\browser\\fontZoom.ts" + }, + { + "command": "editor.action.fontZoomOut", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\fontZoom\\browser\\fontZoom.ts" + }, + { + "command": "editor.action.fontZoomReset", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\fontZoom\\browser\\fontZoom.ts" + }, + { + "command": "editor.action.formatDocument", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\format\\browser\\formatActions.ts" + }, + { + "command": "editor.action.formatSelection", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\format\\browser\\formatActions.ts" + }, + { + "command": "editor.action.marker.nextInFiles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoError\\browser\\gotoError.ts" + }, + { + "command": "editor.action.marker.prevInFiles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoError\\browser\\gotoError.ts" + }, + { + "command": "closeMarkersNavigation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoError\\browser\\gotoError.ts" + }, + { + "command": "editor.action.peekDeclaration", + "title": "peek.submenu', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\goToCommands.ts" + }, + { + "command": "editor.action.goToReferences", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\goToCommands.ts" + }, + { + "command": "editor.action.referenceSearch.trigger", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\goToCommands.ts" + }, + { + "command": "editor.action.goToLocation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\goToCommands.ts" + }, + { + "command": "editor.action.goToLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\goToCommands.ts" + }, + { + "command": "editor.action.peekLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\goToCommands.ts" + }, + { + "command": "editor.action.findReferences", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\goToCommands.ts" + }, + { + "command": "editor.gotoNextSymbolFromResult", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\symbolNavigation.ts" + }, + { + "command": "editor.gotoNextSymbolFromResult.cancel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\symbolNavigation.ts" + }, + { + "command": "togglePeekWidgetFocus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\peek\\referencesController.ts" + }, + { + "command": "goToNextReference", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\peek\\referencesController.ts" + }, + { + "command": "goToPreviousReference", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\peek\\referencesController.ts" + }, + { + "command": "closeReferenceSearch", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\peek\\referencesController.ts" + }, + { + "command": "revealReference", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\peek\\referencesController.ts" + }, + { + "command": "openReferenceToSide", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\gotoSymbol\\browser\\peek\\referencesController.ts" + }, + { + "command": "editor.action.showHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\hover\\browser\\hover.ts" + }, + { + "command": "editor.action.showDefinitionPreviewHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\hover\\browser\\hover.ts" + }, + { + "command": "editor.action.scrollUpHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\hover\\browser\\hover.ts" + }, + { + "command": "editor.action.scrollDownHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\hover\\browser\\hover.ts" + }, + { + "command": "editor.action.scrollLeftHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\hover\\browser\\hover.ts" + }, + { + "command": "editor.action.scrollRightHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\hover\\browser\\hover.ts" + }, + { + "command": "editor.action.pageUpHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\hover\\browser\\hover.ts" + }, + { + "command": "editor.action.pageDownHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\hover\\browser\\hover.ts" + }, + { + "command": "editor.action.goToTopHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\hover\\browser\\hover.ts" + }, + { + "command": "editor.action.goToBottomHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\hover\\browser\\hover.ts" + }, + { + "command": "editor.action.escapeFocusHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\hover\\browser\\hover.ts" + }, + { + "command": "editor.action.reindentlines", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\indentation\\browser\\indentation.ts" + }, + { + "command": "editor.action.reindentselectedlines", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\indentation\\browser\\indentation.ts" + }, + { + "command": "editor.action.inlineSuggest.trigger", + "title": "acceptWord', 'Accept Word'),\n\t\t\t\tgroup: 'primary',\n\t\t\t\torder: 2,\n\t\t\t}],\n\t\t});\n\t}\n\n\tpublic async run(accessor: ServicesAccessor | undefined, editor: ICodeEditor): Promise {\n\t\tconst controller = GhostTextController.get(editor);\n\t\tif (controller) {\n\t\t\tcontroller.commitPartially();\n\t\t}\n\t}\n}\n\nexport class AcceptInlineCompletion extends EditorAction {\n\tconstructor() {\n\t\tsuper({\n\t\t\tid: inlineSuggestCommitId,\n\t\t\tlabel: nls.localize('action.inlineSuggest.accept', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\inlineCompletions\\browser\\ghostTextController.ts" + }, + { + "command": "editor.action.inlineSuggest.acceptNextWord", + "title": "accept', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\inlineCompletions\\browser\\ghostTextController.ts" + }, + { + "command": "editor.action.inlineSuggest.undo", + "title": "action.inlineSuggest.alwaysShowToolbar', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\inlineCompletions\\browser\\ghostTextController.ts" + }, + { + "command": "editor.action.inPlaceReplace.up", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\inPlaceReplace\\browser\\inPlaceReplace.ts" + }, + { + "command": "editor.action.inPlaceReplace.down", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\inPlaceReplace\\browser\\inPlaceReplace.ts" + }, + { + "command": "expandLineSelection", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\lineSelection\\browser\\lineSelection.ts" + }, + { + "command": "editor.action.copyLinesUpAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.copyLinesDownAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.duplicateSelection", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.moveLinesUpAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.moveLinesDownAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.sortLinesAscending", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.sortLinesDescending", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.removeDuplicateLines", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.deleteLines", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.indentLines", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.outdentLines", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.insertLineBefore", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.insertLineAfter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "deleteAllLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "deleteAllRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.joinLines", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transpose", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transformToUppercase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transformToLowercase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transformToTitlecase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transformToSnakecase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transformToCamelcase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transformToKebabcase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.linkedEditing", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linkedEditing\\browser\\linkedEditing.ts" + }, + { + "command": "cancelLinkedEditingInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linkedEditing\\browser\\linkedEditing.ts" + }, + { + "command": "editor.action.openLink", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\links\\browser\\links.ts" + }, + { + "command": "leaveEditorMessage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\message\\browser\\messageController.ts" + }, + { + "command": "editor.action.insertCursorAbove", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.insertCursorBelow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.insertCursorAtEndOfEachLineSelected", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.addCursorsToBottom", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.addCursorsToTop", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.addSelectionToNextFindMatch", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.addSelectionToPreviousFindMatch", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.moveSelectionToNextFindMatch", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.moveSelectionToPreviousFindMatch", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.selectHighlights", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.changeAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.focusNextCursor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.focusPreviousCursor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.triggerParameterHints", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\parameterHints\\browser\\parameterHints.ts" + }, + { + "command": "closeParameterHints", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\parameterHints\\browser\\parameterHints.ts" + }, + { + "command": "showPrevParameterHint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\parameterHints\\browser\\parameterHints.ts" + }, + { + "command": "showNextParameterHint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\parameterHints\\browser\\parameterHints.ts" + }, + { + "command": "editor.action.rename", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\rename\\browser\\rename.ts" + }, + { + "command": "acceptRenameInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\rename\\browser\\rename.ts" + }, + { + "command": "acceptRenameInputWithPreview", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\rename\\browser\\rename.ts" + }, + { + "command": "cancelRenameInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\rename\\browser\\rename.ts" + }, + { + "command": "testMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\browser\\widget\\codeEditorWidget.test.ts" + }, + { + "command": "testMode2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\semanticTokens\\test\\browser\\documentSemanticTokens.test.ts" + }, + { + "command": "editor.action.smartSelect.expand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\smartSelect\\browser\\smartSelect.ts" + }, + { + "command": "editor.action.smartSelect.shrink", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\smartSelect\\browser\\smartSelect.ts" + }, + { + "command": "jumpToNextSnippetPlaceholder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\snippet\\browser\\snippetController2.ts" + }, + { + "command": "jumpToPrevSnippetPlaceholder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\snippet\\browser\\snippetController2.ts" + }, + { + "command": "leaveSnippet", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\snippet\\browser\\snippetController2.ts" + }, + { + "command": "acceptSnippet", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\snippet\\browser\\snippetController2.ts" + }, + { + "command": "foo", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\test\\browser\\notebookServiceImpl.test.ts" + }, + { + "command": "workspace-id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\test\\browser\\editSessions.test.ts" + }, + { + "command": "editor.action.toggleStickyScroll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\stickyScroll\\browser\\stickyScrollActions.ts" + }, + { + "command": "editor.action.focusStickyScroll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\stickyScroll\\browser\\stickyScrollActions.ts" + }, + { + "command": "editor.action.selectNextStickyScrollLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\stickyScroll\\browser\\stickyScrollActions.ts" + }, + { + "command": "editor.action.selectPreviousStickyScrollLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\stickyScroll\\browser\\stickyScrollActions.ts" + }, + { + "command": "editor.action.goToFocusedStickyScrollLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\stickyScroll\\browser\\stickyScrollActions.ts" + }, + { + "command": "editor.action.selectEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\stickyScroll\\browser\\stickyScrollActions.ts" + }, + { + "command": "acceptSelectedSuggestion", + "title": "accept.insert', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "acceptAlternativeSelectedSuggestion", + "title": "accept.insert', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "hideSuggestWidget", + "title": "accept.replace', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "selectNextSuggestion", + "title": "accept.replace', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "selectNextPageSuggestion", + "title": "accept.insert', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "selectLastSuggestion", + "title": "detail.more', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "selectPrevSuggestion", + "title": "detail.less', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "selectPrevPageSuggestion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "selectFirstSuggestion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "focusSuggestion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "focusAndAcceptSuggestion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "toggleSuggestionDetails", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "toggleExplainMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "toggleSuggestionFocus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "insertBestCompletion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "insertNextSuggestion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "insertPrevSuggestion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "editor.action.resetSuggestSize", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "editor.action.forceRetokenize", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\tokenization\\browser\\tokenization.ts" + }, + { + "command": "unicodeHighlightBanner", + "title": "unicodeHighlight.configureUnicodeHighlightOptions', 'Configure Unicode Highlight Options') }\n\t\t);\n\n\t\tif (result) {\n\t\t\tawait result.run();\n\t\t}\n\t}\n}\n\nasync function excludeCharFromBeingHighlighted(configurationService: IConfigurationService, charCodes: number[]) {\n\tconst existingValue = configurationService.getValue(unicodeHighlightConfigKeys.allowedCharacters);\n\n\tlet value: Record;\n\tif ((typeof existingValue === 'object') && existingValue) {\n\t\tvalue = existingValue as any;\n\t} else {\n\t\tvalue = {};\n\t}\n\n\tfor (const charCode of charCodes) {\n\t\tvalue[String.fromCodePoint(charCode)] = true;\n\t}\n\n\tawait configurationService.updateValue(unicodeHighlightConfigKeys.allowedCharacters, value, ConfigurationTarget.USER);\n}\n\nasync function excludeLocaleFromBeingHighlighted(configurationService: IConfigurationService, locales: string[]) {\n\tconst existingValue = configurationService.inspect(unicodeHighlightConfigKeys.allowedLocales).user?.value;\n\n\tlet value: Record;\n\tif ((typeof existingValue === 'object", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\unicodeHighlighter\\browser\\unicodeHighlighter.ts" + }, + { + "command": "editor.action.wordHighlight.next", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordHighlighter\\browser\\wordHighlighter.ts" + }, + { + "command": "editor.action.wordHighlight.prev", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordHighlighter\\browser\\wordHighlighter.ts" + }, + { + "command": "editor.action.wordHighlight.trigger", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordHighlighter\\browser\\wordHighlighter.ts" + }, + { + "command": "cursorWordStartLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordEndLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordStartLeftSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordEndLeftSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordLeftSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordAccessibilityLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordAccessibilityLeftSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordStartRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordEndRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordStartRightSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordEndRightSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordRightSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordAccessibilityRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordAccessibilityRightSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordStartLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordEndLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordStartRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordEndRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteInsideWord", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordPartLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordPartOperations\\browser\\wordPartOperations.ts" + }, + { + "command": "deleteWordPartRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordPartOperations\\browser\\wordPartOperations.ts" + }, + { + "command": "cursorWordPartLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordPartOperations\\browser\\wordPartOperations.ts" + }, + { + "command": "cursorWordPartLeftSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordPartOperations\\browser\\wordPartOperations.ts" + }, + { + "command": "cursorWordPartRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordPartOperations\\browser\\wordPartOperations.ts" + }, + { + "command": "cursorWordPartRightSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordPartOperations\\browser\\wordPartOperations.ts" + }, + { + "command": "editor.action.showAccessibilityHelp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\accessibility\\accessibility.ts" + }, + { + "command": "closeAccessibilityHelp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\accessibility\\accessibility.ts" + }, + { + "command": "editor.action.inspectTokens", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\standalone\\browser\\inspectTokens\\inspectTokens.ts" + }, + { + "command": "editor.action.toggleHighContrast", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\standalone\\browser\\toggleHighContrast\\toggleHighContrast.ts" + }, + { + "command": "editorBackground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\browser\\services\\decorationRenderOptions.test.ts" + }, + { + "command": "editorBorder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\browser\\services\\decorationRenderOptions.test.ts" + }, + { + "command": "infoForeground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\browser\\services\\decorationRenderOptions.test.ts" + }, + { + "command": "monaco", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "codefile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "docker", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "niceregex", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "foobar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "azure-looser", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "azure-winner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "monaco2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "monaco3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "data", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "outputLangId", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesRegistry.test.ts" + }, + { + "command": "langId", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesRegistry.test.ts" + }, + { + "command": "label", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\browser\\toolbar.ts" + }, + { + "command": "resetThisMenu", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\browser\\toolbar.ts" + }, + { + "command": "menu.resetHiddenStates", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\common\\menuResetAction.ts" + }, + { + "command": "one", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\test\\common\\menuService.test.ts" + }, + { + "command": "two", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\test\\common\\menuService.test.ts" + }, + { + "command": "three", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\test\\common\\menuService.test.ts" + }, + { + "command": "four", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\test\\common\\menuService.test.ts" + }, + { + "command": "five", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\test\\common\\menuService.test.ts" + }, + { + "command": "d", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\extensionsMerge.test.ts" + }, + { + "command": "hideCodeActionWidget", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actionWidget\\browser\\actionWidget.ts" + }, + { + "command": "selectPrevCodeAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actionWidget\\browser\\actionWidget.ts" + }, + { + "command": "selectNextCodeAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actionWidget\\browser\\actionWidget.ts" + }, + { + "command": "test3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\commands\\test\\common\\commands.test.ts" + }, + { + "command": "defaultOverrides", + "title": "defaultLanguageConfigurationOverrides.title', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\configuration\\common\\configurationRegistry.ts" + }, + { + "command": "getContextKeyInfo", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\contextkey\\browser\\contextKeyService.ts" + }, + { + "command": "pub.extension-name", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\extensionManagement\\test\\common\\extensionManagement.test.ts" + }, + { + "command": "test.authentication", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\extensionManagement\\test\\common\\extensionNls.test.ts" + }, + { + "command": "pub.name", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\extensionManagement\\test\\node\\extensionsScannerService.test.ts" + }, + { + "command": "uuid", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\extensionManagement\\test\\node\\extensionsScannerService.test.ts" + }, + { + "command": "pub.name2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\extensionManagement\\test\\node\\extensionsScannerService.test.ts" + }, + { + "command": "history.showPrevious", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\history\\browser\\contextScopedHistoryWidget.ts" + }, + { + "command": "history.showNext", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\history\\browser\\contextScopedHistoryWidget.ts" + }, + { + "command": "workbench", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\themes\\common\\themeConfiguration.ts" + }, + { + "command": "vscode.menubar.separator", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\parts\\titlebar\\menubarControl.ts" + }, + { + "command": "http", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\request\\common\\request.ts" + }, + { + "command": "id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\storage\\test\\browser\\storageService.test.ts" + }, + { + "command": "terminal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "$invalid", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\theme\\common\\tokenClassificationRegistry.ts" + }, + { + "command": "update", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\update\\common\\update.config.contribution.ts" + }, + { + "command": ") ? key.substring(", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\common\\extensionsMerge.ts" + }, + { + "command": "settingsSync", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "e", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\extensionsMerge.test.ts" + }, + { + "command": "A", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\extensionsMerge.test.ts" + }, + { + "command": "3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "4", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\userDataProfilesManifestMerge.test.ts" + }, + { + "command": "5", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\userDataProfilesManifestMerge.test.ts" + }, + { + "command": "6", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\userDataProfilesManifestMerge.test.ts" + }, + { + "command": "7", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\userDataProfilesManifestMerge.test.ts" + }, + { + "command": "configuredAuthProvider", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\userDataSyncStoreService.test.ts" + }, + { + "command": "1234", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\workspaces\\test\\electron-main\\workspacesHistoryStorage.test.ts" + }, + { + "command": "53b714b46ef1a2d4346568b4f591028c", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\workspaces\\test\\electron-main\\workspacesHistoryStorage.test.ts" + }, + { + "command": "ext-dev", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\workspace\\common\\workspace.ts" + }, + { + "command": "empty-window", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\workspace\\common\\workspace.ts" + }, + { + "command": "workbench.action.focusCommentsPanel", + "title": "collapseAll', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsView.ts" + }, + { + "command": "files.participants.resetChoice", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\browser\\mainThreadFileSystemEventService.ts" + }, + { + "command": "${1:id}", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\themes\\common\\themeExtensionPoints.ts" + }, + { + "command": "workbench.action.showTreeHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\browser\\viewsExtensionPoint.ts" + }, + { + "command": "${id}", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\common\\extHostUriOpener.ts" + }, + { + "command": "uniquestring", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostEditorTabs.test.ts" + }, + { + "command": "AAA", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostEditorTabs.test.ts" + }, + { + "command": "BBB", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostEditorTabs.test.ts" + }, + { + "command": "uniquestring2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostEditorTabs.test.ts" + }, + { + "command": "uniquestring3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostEditorTabs.test.ts" + }, + { + "command": "_notebook_editor_0", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostNotebookKernel.test.ts" + }, + { + "command": "_notebook_editor_2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostNotebook.test.ts" + }, + { + "command": "ctrlId\\0tag1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostTesting.test.ts" + }, + { + "command": "ctrlId\\0tag2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostTesting.test.ts" + }, + { + "command": "ctrlId\\0tag3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostTesting.test.ts" + }, + { + "command": "testContainer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\mainThreadTreeViews.test.ts" + }, + { + "command": "1000", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\node\\extHostTunnelService.test.ts" + }, + { + "command": "workbench.action.resetUserData", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\web.main.ts" + }, + { + "command": "workbench.action.inspectContextKeys", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.toggleScreencastMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.logStorage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.logWorkingCopies", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\developerActions.ts" + }, + { + "command": "screencastMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.closeSidebar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.toggleCenteredLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.toggleEditorVisibility", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.toggleZenMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.exitZenMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.toggleMenuBar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.resetViewLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.moveView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.moveFocusedView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "_.panel.newcontainer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "_.sidebar.newcontainer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "_.auxiliarybar.newcontainer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.resetFocusedViewLocation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.increaseViewSize", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.increaseViewWidth", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.increaseViewHeight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.decreaseViewSize", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.decreaseViewWidth", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.decreaseViewHeight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.customizeLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "list.focusDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.focusUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.focusPageDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.focusPageUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.focusFirst", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.focusLast", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.expandSelectionDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.expandSelectionUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.collapse", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.collapseAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.collapseAllToFocus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.focusParent", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.expand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.select", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.selectAndPreserveFocus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.selectAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.toggleSelection", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.toggleExpand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.clear", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.triggerTypeNavigation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.toggleFindMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.find", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.closeFind", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.scrollUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.scrollDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.scrollLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.scrollRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "workbench.action.navigateLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\navigationActions.ts" + }, + { + "command": "workbench.action.navigateRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\navigationActions.ts" + }, + { + "command": "workbench.action.navigateUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\navigationActions.ts" + }, + { + "command": "workbench.action.navigateDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\navigationActions.ts" + }, + { + "command": "workbench.action.focusNextPart", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\navigationActions.ts" + }, + { + "command": "workbench.action.focusPreviousPart", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\navigationActions.ts" + }, + { + "command": "workbench.action.closeQuickOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.acceptSelectedQuickOpenItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.alternativeAcceptSelectedQuickOpenItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.focusQuickOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.quickPickManyToggle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.quickInputBack", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.quickOpen", + "title": "reopenWith', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileActions.contribution.ts" + }, + { + "command": "workbench.action.quickOpenWithModes", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.quickOpenRecent", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.toggleFullScreen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.showAboutDialog", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.newWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.blur", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.toggleConfirmBeforeClose", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.files.openFileFolderInNewWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "_files.pickFolderAndOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "workbench.action.files.openFolderInNewWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "workbench.action.files.openFileInNewWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "workbench.action.openWorkspaceInNewWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "vscode.openFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "vscode.newWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "vscode.removeFromRecentlyOpened", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "additionalComposites.action", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\compositeBarActions.ts" + }, + { + "command": "hideAccounts", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarActions.ts" + }, + { + "command": "workbench.action.previousSideBarView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarActions.ts" + }, + { + "command": "workbench.action.nextSideBarView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarActions.ts" + }, + { + "command": "workbench.action.focusActivityBar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarActions.ts" + }, + { + "command": "toggleMenuVisibility", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarPart.ts" + }, + { + "command": "hideCompactMenu", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarPart.ts" + }, + { + "command": "toggleAccountsVisibility", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarPart.ts" + }, + { + "command": "resetLocationAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\panel\\panelPart.ts" + }, + { + "command": "workbench.actions.manage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarPart.ts" + }, + { + "command": "workbench.actions.accounts", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarPart.ts" + }, + { + "command": "workbench.banner.focusBanner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\banner\\bannerPart.ts" + }, + { + "command": "workbench.banner.focusNextAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\banner\\bannerPart.ts" + }, + { + "command": "workbench.banner.focusPreviousAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\banner\\bannerPart.ts" + }, + { + "command": "showEditorScreenReaderNotification", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\accessibilityStatus.ts" + }, + { + "command": "breadcrumbs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbs.ts" + }, + { + "command": "breadcrumbs.toggle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.focusAndSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.toggleToOn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.focusNext", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.focusPrevious", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.focusNextWithPicker", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.focusPreviousWithPicker", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.selectFocused", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.revealFocused", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.selectEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.revealFocusedFromTreeAside", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "workbench.action.navigateToLastEditLocation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.nextEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.previousEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.openNextRecentlyUsedEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.openPreviousRecentlyUsedEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.nextEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.previousEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.openNextRecentlyUsedEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.openPreviousRecentlyUsedEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusFirstEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusSecondEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editor.contribution.ts" + }, + { + "command": "workbench.action.focusThirdEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editor.contribution.ts" + }, + { + "command": "workbench.action.focusFourthEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editor.contribution.ts" + }, + { + "command": "workbench.action.focusFifthEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editor.contribution.ts" + }, + { + "command": "workbench.action.focusNextGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusPreviousGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusLeftGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusRightGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusAboveGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusBelowGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorOrthogonal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.joinTwoGroups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.joinAllGroups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateEditorGroups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusActiveEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusLastEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.revertAndCloseActiveEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.closeEditorsToTheLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.closeAllGroups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.closeEditorsInOtherGroups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.closeEditorInAllGroups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveActiveEditorGroupLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveActiveEditorGroupRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveActiveEditorGroupUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveActiveEditorGroupDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.duplicateActiveEditorGroupLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.duplicateActiveEditorGroupRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.duplicateActiveEditorGroupUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.duplicateActiveEditorGroupDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.minimizeOtherEditors", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.evenEditorWidths", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.toggleEditorWidths", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.maximizeEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.firstEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.lastEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateLast", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateForwardInEditLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateBackInEditLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigatePreviousInEditLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateForwardInNavigationLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateBackInNavigationLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigatePreviousInNavigationLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateToLastNavigationLocation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.quickOpenPreviousRecentlyUsedEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.quickOpenLeastRecentlyUsedEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.quickOpenPreviousRecentlyUsedEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.quickOpenLeastRecentlyUsedEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.clearEditorHistory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorLeftInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorRightInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToPreviousGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToNextGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToAboveGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToBelowGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToLeftGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToRightGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToFirstGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToLastGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToPreviousGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToNextGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToAboveGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToBelowGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToLeftGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToRightGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToFirstGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToLastGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.newGroupLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.newGroupRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.newGroupAbove", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.newGroupBelow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.toggleEditorType", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.reopenTextEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "vscode.setEditorLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorCommands.ts" + }, + { + "command": "vscode.getEditorLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorCommands.ts" + }, + { + "command": "vscode.open", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorCommands.ts" + }, + { + "command": "vscode.diff", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorCommands.ts" + }, + { + "command": "workbench.input.interactive", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorConfiguration.ts" + }, + { + "command": "mainThreadWebview-markdown.preview", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorConfiguration.ts" + }, + { + "command": "workbench.action.showCommands", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.files.openFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.files.openFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.files.openFileFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.openRecent", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.files.newUntitledFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeViews\\common\\newFile.contribution.ts" + }, + { + "command": "workbench.action.findInFiles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.terminal.toggleTerminal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.debug.start", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.openSettings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "changeEditorIndentation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorStatus.ts" + }, + { + "command": "workbench.action.editor.changeEOL", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorStatus.ts" + }, + { + "command": "workbench.action.editor.changeEncoding", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorStatus.ts" + }, + { + "command": "workbench.action.focusPanel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\panel\\panelActions.ts" + }, + { + "command": "workbench.action.toggleMaximizedPanel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\panel\\panelActions.ts" + }, + { + "command": "workbench.action.closePanel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\panel\\panelActions.ts" + }, + { + "command": "workbench.action.closeAuxiliaryBar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\panel\\panelActions.ts" + }, + { + "command": "workbench.action.focusSideBar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\sidebar\\sidebarActions.ts" + }, + { + "command": "workbench.statusBar.focusPrevious", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\statusbar\\statusbarActions.ts" + }, + { + "command": "workbench.statusBar.focusNext", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\statusbar\\statusbarActions.ts" + }, + { + "command": "workbench.statusBar.focusFirst", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\statusbar\\statusbarActions.ts" + }, + { + "command": "workbench.statusBar.focusLast", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\statusbar\\statusbarActions.ts" + }, + { + "command": "workbench.statusBar.clearFocus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\statusbar\\statusbarActions.ts" + }, + { + "command": "workbench.action.focusStatusBar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\statusbar\\statusbarActions.ts" + }, + { + "command": "views.moveViewUp", + "title": "views', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\views\\viewPaneContainer.ts" + }, + { + "command": "views.moveViewLeft", + "title": "viewMoveUp', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\views\\viewPaneContainer.ts" + }, + { + "command": "views.moveViewDown", + "title": "viewMoveLeft', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\views\\viewPaneContainer.ts" + }, + { + "command": "views.moveViewRight", + "title": "viewMoveDown', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\views\\viewPaneContainer.ts" + }, + { + "command": "vscode.moveViews", + "title": "viewMoveRight', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\views\\viewPaneContainer.ts" + }, + { + "command": "default", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\editor\\test\\browser\\editorResolverService.test.ts" + }, + { + "command": "workbench.action.openLargeFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\common\\editor.ts" + }, + { + "command": "workbench.action.configureEditorLargeFileConfirmation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\common\\editor.ts" + }, + { + "command": "files", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\bulkEditService.ts" + }, + { + "command": "refactorPreview.apply", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\preview\\bulkEdit.contribution.ts" + }, + { + "command": "refactorPreview.discard", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\preview\\bulkEdit.contribution.ts" + }, + { + "command": "refactorPreview.toggleCheckedState", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\preview\\bulkEdit.contribution.ts" + }, + { + "command": "refactorPreview.groupByFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\preview\\bulkEdit.contribution.ts" + }, + { + "command": "refactorPreview.groupByType", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\preview\\bulkEdit.contribution.ts" + }, + { + "command": "refactorPreview.toggleGrouping", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\preview\\bulkEdit.contribution.ts" + }, + { + "command": "editor.showCallHierarchy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\callHierarchy\\browser\\callHierarchy.contribution.ts" + }, + { + "command": "editor.showIncomingCalls", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\callHierarchy\\browser\\callHierarchy.contribution.ts" + }, + { + "command": "editor.showOutgoingCalls", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\callHierarchy\\browser\\callHierarchy.contribution.ts" + }, + { + "command": "editor.refocusCallHierarchy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\callHierarchy\\browser\\callHierarchy.contribution.ts" + }, + { + "command": "editor.closeCallHierarchy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\callHierarchy\\browser\\callHierarchy.contribution.ts" + }, + { + "command": "workbench.action.inspectKeyMappings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\inspectKeybindings.ts" + }, + { + "command": "workbench.action.inspectKeyMappingsJSON", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\inspectKeybindings.ts" + }, + { + "command": "editor.contrib.largeFileOptimizationsWarner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\largeFileOptimizations.ts" + }, + { + "command": "editor.action.toggleScreenReaderAccessibilityMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\accessibility\\accessibility.ts" + }, + { + "command": "editor.action.inspectTMScopes", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\inspectEditorTokens\\inspectEditorTokens.ts" + }, + { + "command": "execCut", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\electron-sandbox\\inputClipboardActions.ts" + }, + { + "command": "execCopy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\electron-sandbox\\inputClipboardActions.ts" + }, + { + "command": "execPaste", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\electron-sandbox\\inputClipboardActions.ts" + }, + { + "command": "editor.action.selectionClipboardPaste", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\electron-sandbox\\selectionClipboard.ts" + }, + { + "command": "editor.action.startDebugTextMate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\electron-sandbox\\startDebugTextMate.ts" + }, + { + "command": "runCommands", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\commands\\common\\commands.contribution.ts" + }, + { + "command": "comments", + "title": "commentsConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\test\\browser\\commentsView.test.ts" + }, + { + "command": "editor.action.nextCommentThreadAction", + "title": "comments.toggleCommenting', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsEditorContribution.ts" + }, + { + "command": "editor.action.previousCommentThreadAction", + "title": "comments.addCommand', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsEditorContribution.ts" + }, + { + "command": "workbench.action.submitComment", + "title": "comments.collapseAll', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsEditorContribution.ts" + }, + { + "command": "workbench.action.hideComment", + "title": "comments.expandAll', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsEditorContribution.ts" + }, + { + "command": "comments.collapse", + "title": "expandAll', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsView.ts" + }, + { + "command": "comments.expand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsView.ts" + }, + { + "command": "commentsFocusViewFromFilter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsViewActions.ts" + }, + { + "command": "commentsClearFilterText", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsViewActions.ts" + }, + { + "command": "commentsFocusFilter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsViewActions.ts" + }, + { + "command": "workbench.debug.viewlet.action.addFunctionBreakpointAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "workbench.debug.viewlet.action.toggleBreakpointsActivatedAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "workbench.debug.viewlet.action.removeBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "workbench.debug.viewlet.action.removeAllBreakpoints", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "workbench.debug.viewlet.action.enableAllBreakpoints", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "workbench.debug.viewlet.action.disableAllBreakpoints", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "workbench.debug.viewlet.action.reapplyBreakpointsAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "debug.editBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "debug.editFunctionBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "debug.editFunctionBreakpointHitCount", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "breakpointWidget.action.acceptInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointWidget.ts" + }, + { + "command": "closeBreakpointWidget", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointWidget.ts" + }, + { + "command": "callStack.collapse", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\callStackView.ts" + }, + { + "command": "debug.installAdditionalDebuggers", + "title": "debugConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "workbench.debug.action.toggleRepl", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debug.contribution.ts" + }, + { + "command": "workbench.debug.action.focusVariablesView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debug.contribution.ts" + }, + { + "command": "workbench.debug.action.focusWatchView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debug.contribution.ts" + }, + { + "command": "workbench.debug.action.focusCallStackView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debug.contribution.ts" + }, + { + "command": "workbench.debug.action.focusBreakpointsView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debug.contribution.ts" + }, + { + "command": "debug", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debug.contribution.ts" + }, + { + "command": "debug.toggleBreakpoint", + "title": "addInlineBreakpoint', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "debug.enableOrDisableBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "debug.setVariable", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "debug.removeBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "debug.openBreakpointToSide", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "debug.openView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "editor.debug.action.toggleBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.conditionalBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.addLogPoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.editBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.showDebugHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.goToNextBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.goToPreviousBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.closeExceptionWidget", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "debug.toggleReplIgnoreFocus", + "title": "debugPanel', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugViewlet.ts" + }, + { + "command": "repl.action.acceptInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "repl.action.filter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "repl.action.copyAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "workbench.debug.panel.action.clearReplAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "debug.collapseRepl", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "debug.replPaste", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "workbench.debug.action.copyAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "debug.replCopy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "variables.collapse", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\variablesView.ts" + }, + { + "command": "watch.collapse", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\watchExpressionsView.ts" + }, + { + "command": "adapter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\test\\node\\debugger.test.ts" + }, + { + "command": "extension1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\test\\node\\debugger.test.ts" + }, + { + "command": "extension2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\test\\node\\debugger.test.ts" + }, + { + "command": "_workbench.editSessions.actions.continueEditSession", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "_workbench.editSessions.actions.continueEditSession.openLocalFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "workbench.editSessions.actions.showOutputChannel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "workbench.action.continueOn.extensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "autoStoreWorkingChanges", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "workbench.editSessions.actions.showEditSessions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "workbench.editSessions.actions.resumeLatest", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "workbench.editSessions.actions.storeCurrent", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "workbench.editSessions.actions.signIn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessionsStorageService.ts" + }, + { + "command": "workbench.editSessions.actions.resetAuth", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessionsStorageService.ts" + }, + { + "command": "workbench.editSessions.actions.resume", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessionsViews.ts" + }, + { + "command": "workbench.editSessions.actions.store", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessionsViews.ts" + }, + { + "command": "workbench.editSessions.actions.delete", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessionsViews.ts" + }, + { + "command": "workbench.editSessions.actions.deleteAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessionsViews.ts" + }, + { + "command": "editor.emmet.action.expandAbbreviation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\emmet\\browser\\actions\\expandAbbreviation.ts" + }, + { + "command": "nunjucks", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\emmet\\test\\browser\\emmetAction.test.ts" + }, + { + "command": "laravel-blade", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\emmet\\test\\browser\\emmetAction.test.ts" + }, + { + "command": "experiment1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "greet", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentalPrompts.test.ts" + }, + { + "command": "experiment2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "experiment3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "experiment4", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "experiment5", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "simple-experiment", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "custom-experiment", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "custom-experiment-no-properties", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "prompt-with-no-commands", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "prompt-with-commands", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "workbench.action.showRuntimeExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\abstractRuntimeExtensionsEditor.ts" + }, + { + "command": "editor.action.extensioneditor.showfind", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionEditor.ts" + }, + { + "command": "editor.action.extensioneditor.findNext", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionEditor.ts" + }, + { + "command": "editor.action.extensioneditor.findPrevious", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionEditor.ts" + }, + { + "command": "extensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "workbench.extensions.installExtension", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.uninstallExtension", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.search", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.installExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showRecommendedKeymapExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showLanguageExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.checkForUpdates", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "configureExtensionsAutoUpdate.all", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "configureExtensionsAutoUpdate.enabled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "configureExtensionsAutoUpdate.none", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.updateAllExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.disableAutoUpdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.enableAutoUpdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.enableAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.enableAllWorkspace", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.disableAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.disableAllWorkspace", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.installExtensionFromLocation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showPopularExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showRecommendedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.recentlyPublishedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.listBuiltInExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.extensionUpdates", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showEnabledExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showDisabledExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "installs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "rating", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "name", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "publishedDate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "updateDate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.clearExtensionsSearchResults", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.refreshExtension", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.installWorkspaceRecommendedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showPreReleaseVersion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showReleasedVersion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.copyExtension", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.copyExtensionId", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.configure", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.configureKeybindings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.ignoreRecommendation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.undoIgnoredRecommendation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.addExtensionToWorkspaceRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.removeExtensionFromWorkspaceRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.addToWorkspaceRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.addToWorkspaceFolderRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.addToWorkspaceIgnoredRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.addToWorkspaceFolderIgnoredRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.installMissingDependencies", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsDependencyChecker.ts" + }, + { + "command": "workbench.extensions.installLocalExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.extensions.actions.installLocalExtensionsInRemote", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.popular", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "extensions.recommendedList", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.enabled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.disabled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.marketplace", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.searchInstalled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.searchRecentlyUpdated", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.searchEnabled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.searchDisabled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.searchBuiltin", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.searchWorkspaceUnsupported", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.otherRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.builtinFeatureExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.builtinThemeExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.builtinProgrammingLanguageExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.untrustedUnsupportedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.untrustedPartiallySupportedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.virtualUnsupportedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.virtualPartiallySupportedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.deprecatedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.extensions.action.openExtensionsFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\electron-sandbox\\extensionsActions.ts" + }, + { + "command": "_workbench.extensions.action.cleanUpExtensionsFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\electron-sandbox\\extensionsActions.ts" + }, + { + "command": "vscode-local", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\test\\electron-sandbox\\extensionsWorkbenchService.test.ts" + }, + { + "command": "vscode-remote", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\test\\electron-sandbox\\extensionsWorkbenchService.test.ts" + }, + { + "command": "vscode-web", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\test\\electron-sandbox\\extensionsActions.test.ts" + }, + { + "command": "', title: ", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\test\\electron-sandbox\\extensionsViews.test.ts" + }, + { + "command": "someId", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\test\\electron-sandbox\\extensionsViews.test.ts" + }, + { + "command": "local", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\test\\browser\\extensionEnablementService.test.ts" + }, + { + "command": "externalTerminal", + "title": "terminalConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\externalTerminal\\electron-sandbox\\externalTerminal.contribution.ts" + }, + { + "command": "disabled-id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\externalUriOpener\\test\\common\\externalUriOpenerService.test.ts" + }, + { + "command": "enabled-id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\externalUriOpener\\test\\common\\externalUriOpenerService.test.ts" + }, + { + "command": "other-id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\externalUriOpener\\test\\common\\externalUriOpenerService.test.ts" + }, + { + "command": "preferred-id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\externalUriOpener\\test\\common\\externalUriOpenerService.test.ts" + }, + { + "command": "workbench.files.action.focusOpenEditorsView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\explorerViewlet.ts" + }, + { + "command": "workbench.explorer.fileView.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\explorerViewlet.ts" + }, + { + "command": "filesExplorer.cancelCut", + "title": "copyPath', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileActions.contribution.ts" + }, + { + "command": "filesExplorer.openFilePreserveFocus", + "title": "copyRelativePath', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileActions.contribution.ts" + }, + { + "command": "explorer.openAndPassFocus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileCommands.ts" + }, + { + "command": "workbench.action.files.copyPathOfActiveFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileCommands.ts" + }, + { + "command": "workbench.action.files.saveEditors", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileCommands.ts" + }, + { + "command": "workbench.action.files.revertEditors", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileCommands.ts" + }, + { + "command": "ignoreEnospcError", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\workspaceWatcher.ts" + }, + { + "command": "workbench.files.action.openFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\editors\\textFileEditor.ts" + }, + { + "command": "workbench.files.action.reveal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\editors\\textFileEditor.ts" + }, + { + "command": "workbench.files.action.createMissingFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\editors\\textFileEditor.ts" + }, + { + "command": "workbench.files.openFile", + "title": "createNewFile', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\openEditorsView.ts" + }, + { + "command": "workbench.files.action.createFileFromExplorer", + "title": "createNewFolder', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\explorerView.ts" + }, + { + "command": "workbench.files.action.createFolderFromExplorer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\explorerView.ts" + }, + { + "command": "workbench.files.action.refreshFilesExplorer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\explorerView.ts" + }, + { + "command": "workbench.files.action.collapseExplorerFolders", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\explorerView.ts" + }, + { + "command": "workbench.action.toggleEditorGroupLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\openEditorsView.ts" + }, + { + "command": "workbench.action.files.saveAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\openEditorsView.ts" + }, + { + "command": "openEditors.closeAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\openEditorsView.ts" + }, + { + "command": "openEditors.newUntitledFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\openEditorsView.ts" + }, + { + "command": "workbench.action.relaunchWithIncreasedMemoryLimit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\electron-sandbox\\textFileEditor.ts" + }, + { + "command": "workbench.action.configureMemoryLimit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\electron-sandbox\\textFileEditor.ts" + }, + { + "command": "formatter.conflict", + "title": "do.config.command', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\format\\browser\\formatActionsMultiple.ts" + }, + { + "command": "editor.action.formatDocument.multiple", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\format\\browser\\formatActionsMultiple.ts" + }, + { + "command": "editor.action.formatSelection.multiple", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\format\\browser\\formatActionsMultiple.ts" + }, + { + "command": "editor.action.formatDocument.none", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\format\\browser\\formatActionsNone.ts" + }, + { + "command": "editor.action.formatChanges", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\format\\browser\\formatModified.ts" + }, + { + "command": "inlayHints.startReadingLineWithHint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\inlayHints\\browser\\inlayHintsAccessibilty.ts" + }, + { + "command": "inlayHints.stopReadingLineWithHint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\inlayHints\\browser\\inlayHintsAccessibilty.ts" + }, + { + "command": "vscode-interactive-input", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "_interactive.open", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.execute", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.input.clear", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.history.previous", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.history.next", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.scrollToTop", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.scrollToBottom", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.input.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.history.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactiveWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactiveEditor.start", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.accept", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.stop", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.cancel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.arrowOutUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.arrowOutDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.previousFromHistory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.nextFromHistory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.undoToClipboard", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.undoToFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.undo", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.feedbackHelpful", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.feedbackunhelpful", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.toggleInlineDiff", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.copyRecordings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveSessionSidebar", + "title": "interactiveSessionConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\interactiveSession.contribution.ts" + }, + { + "command": "', program: ", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\interactiveSessionContributionServiceImpl.ts" + }, + { + "command": "interactiveSession.action.acceptInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionActions.ts" + }, + { + "command": "workbench.action.interactiveSessionEditor.clear", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionActions.ts" + }, + { + "command": "workbench.action.interactiveSessionEditor.clearHistory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionActions.ts" + }, + { + "command": "interactiveSession.action.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionActions.ts" + }, + { + "command": "workbench.action.interactiveSession.focusInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionActions.ts" + }, + { + "command": "workbench.action.interactiveSession.copyCodeBlock", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionCodeblockActions.ts" + }, + { + "command": "workbench.action.interactiveSession.insertCodeBlock", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionCodeblockActions.ts" + }, + { + "command": "workbench.action.interactiveSession.copyAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionCopyActions.ts" + }, + { + "command": "workbench.action.interactiveSession.copyItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionCopyActions.ts" + }, + { + "command": "workbench.action.interactiveSession.submit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionExecuteActions.ts" + }, + { + "command": "workbench.action.interactiveSession.cancel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionExecuteActions.ts" + }, + { + "command": "workbench.action.interactiveSession.voteUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionTitleActions.ts" + }, + { + "command": "workbench.action.interactiveSession.voteDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionTitleActions.ts" + }, + { + "command": "workbench.action.toggleKeybindingsLog", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\keybindings\\browser\\keybindings.contribution.ts" + }, + { + "command": "status.editor.mode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\languageStatus\\browser\\languageStatus.contribution.ts" + }, + { + "command": "editor.inlayHints.Reset", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\languageStatus\\browser\\languageStatus.contribution.ts" + }, + { + "command": "workbench.action.localHistory.compareWithFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.compareWithPrevious", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.selectForCompare", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.compareWithSelected", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.open", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.restoreViaEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.restore", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.restoreViaPicker", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.rename", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.delete", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.deleteAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.create", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.revealInOS", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\electron-sandbox\\localHistoryCommands.ts" + }, + { + "command": "', path: ", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localization\\common\\localization.contribution.ts" + }, + { + "command": "langugage.update.donotask", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localization\\electron-sandbox\\localization.contribution.ts" + }, + { + "command": "en", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localization\\electron-sandbox\\localization.contribution.ts" + }, + { + "command": "workbench.action.setDefaultLogLevel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\logs\\common\\logs.contribution.ts" + }, + { + "command": "workbench.actions.view.problems", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\markers\\browser\\markers.contribution.ts" + }, + { + "command": "workbench.action.problems.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\markers\\browser\\markers.contribution.ts" + }, + { + "command": "_open.mergeEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.mixedLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.columnLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.showNonConflictingChanges", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.showBase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.showBaseTop", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.showBaseCenter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.openResult", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.goToNextUnhandledConflict", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.goToPreviousUnhandledConflict", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.toggleActiveConflictInput1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.toggleActiveConflictInput2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "mergeEditor.compareInput1WithBase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "mergeEditor.compareInput2WithBase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.openBaseEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.acceptAllInput1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.acceptAllInput2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "mergeEditor.resetResultToBaseAndAutoMerge", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "mergeEditor.resetCloseWithConflictsChoice", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "mergeEditor.acceptMerge", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.dev.copyContentsJson", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\devCommands.ts" + }, + { + "command": "merge.dev.saveContentsToFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\devCommands.ts" + }, + { + "command": "merge.dev.loadContentsFromFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\devCommands.ts" + }, + { + "command": "nextConflict", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\view\\editors\\resultCodeEditorView.ts" + }, + { + "command": "merge.dev.openContentsJson", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\electron-sandbox\\devCommands.ts" + }, + { + "command": "merge.dev.openSelectionInTemporaryMergeEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\electron-sandbox\\devCommands.ts" + }, + { + "command": "notebook", + "title": "notebookConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\view\\cellParts\\cellEditorOptions.ts" + }, + { + "command": "workbench.notebook.action.openInTextEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\notebookEditor.ts" + }, + { + "command": "', displayName: ", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\notebookExtensionPoint.ts" + }, + { + "command": "workbench.action.toggleNotebookClipboardLog", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\clipboard\\notebookClipboard.ts" + }, + { + "command": "statusBarItem.prominentBackground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\editorStatusBar\\editorStatusBar.ts" + }, + { + "command": "notebook.hideFind", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\find\\notebookFind.ts" + }, + { + "command": "notebook.find", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\find\\notebookFind.ts" + }, + { + "command": "findInMarkdownInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\find\\notebookFindReplaceWidget.ts" + }, + { + "command": "findInCodeInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\find\\notebookFindReplaceWidget.ts" + }, + { + "command": "findInCodeOutput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\find\\notebookFindReplaceWidget.ts" + }, + { + "command": "notebook.format", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\format\\formatting.ts" + }, + { + "command": "notebook.formatCell", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\format\\formatting.ts" + }, + { + "command": "workbench.notebook.layout.gettingStarted", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\gettingStarted\\notebookGettingStarted.ts" + }, + { + "command": "notebook.setProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\profile\\notebookProfile.ts" + }, + { + "command": "notebook.toggleLayoutTroubleshoot", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\troubleshoot\\layout.ts" + }, + { + "command": "notebook.inspectLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\troubleshoot\\layout.ts" + }, + { + "command": "notebook.clearNotebookEdtitorTypeCache", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\troubleshoot\\layout.ts" + }, + { + "command": "notebook.fold", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\foldingController.ts" + }, + { + "command": "notebook.unfold", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\foldingController.ts" + }, + { + "command": "workbench.notebook.layout.select", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "workbench.notebook.layout.configure", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "workbench.notebook.layout.configure.editorTitle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "notebook.toggleLineNumbersFromEditorTitle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "notebook.toggleCellToolbarPositionFromEditorTitle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "breadcrumbs.toggleFromEditorTitle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "notebook.saveMimeTypeOrder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "workbench.notebook.layout.webview.reset", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "notebook.diff.switchToText", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.cell.revertMetadata", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.cell.switchOutputRenderingStyle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.cell.switchOutputRenderingStyleToText", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.cell.revertOutputs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.cell.revertInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.action.previous", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.action.next", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.clearNotebookKernelsMRUCache", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\services\\notebookKernelHistoryServiceImpl.ts" + }, + { + "command": "notebook.toggleLineNumbers", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\view\\cellParts\\cellEditorOptions.ts" + }, + { + "command": "notebook.cell.toggleLineNumbers", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\view\\cellParts\\cellEditorOptions.ts" + }, + { + "command": "installRenderers", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\view\\cellParts\\cellOutput.ts" + }, + { + "command": "install", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\viewParts\\notebookKernelQuickPickStrategy.ts" + }, + { + "command": "installSuggested", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\viewParts\\notebookKernelQuickPickStrategy.ts" + }, + { + "command": "selectAnother", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\viewParts\\notebookKernelQuickPickStrategy.ts" + }, + { + "command": "bar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\test\\browser\\notebookServiceImpl.test.ts" + }, + { + "command": "outline.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outline.contribution.ts" + }, + { + "command": "outline.collapse", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "outline.expand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "outline.followCursor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "outline.filterOnType", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "outline.sortByPosition", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "outline.sortByName", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "outline.sortByKind", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "workbench.action.output.toggleOutput", + "title": "output', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\output\\browser\\output.contribution.ts" + }, + { + "command": "workbench.action.showOutputChannels", + "title": "switchBetweenOutputs.label', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\output\\browser\\output.contribution.ts" + }, + { + "command": "workbench.action.showLogs", + "title": "switchToOutput.label', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\output\\browser\\output.contribution.ts" + }, + { + "command": "workbench.action.openLogFile", + "title": "output', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\output\\browser\\output.contribution.ts" + }, + { + "command": "output", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\output\\browser\\output.contribution.ts" + }, + { + "command": "perfview.show", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\performance\\browser\\performance.contribution.ts" + }, + { + "command": "perf.insta.printAsyncCycles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\performance\\browser\\performance.contribution.ts" + }, + { + "command": "perf.insta.printTraces", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\performance\\browser\\performance.contribution.ts" + }, + { + "command": "perf.event.profiling", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\performance\\browser\\performance.contribution.ts" + }, + { + "command": "editKeybinding", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\keybindingsEditor.ts" + }, + { + "command": "addKeybinding", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\keybindingsEditor.ts" + }, + { + "command": "workbench.action.openSettings2", + "title": "settings', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openSettingsJson", + "title": "settings.focusFile', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openApplicationSettingsJson", + "title": "settings.focusFile', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openGlobalSettings", + "title": "settings.focusSettingsList', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openRawDefaultSettings", + "title": "settings.focusSettingControl', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "_workbench.openUserSettingsEditor", + "title": "clear', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openWorkspaceSettings", + "title": "clearHistory', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openAccessibilitySettings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openWorkspaceSettingsFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openFolderSettings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openFolderSettingsFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "_workbench.action.openFolderSettings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openRemoteSettings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openRemoteSettingsFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openGlobalKeybindings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openDefaultKeybindingsFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openGlobalKeybindingsFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "editor.action.defineKeybinding", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "_getAllSettings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferencesActions.ts" + }, + { + "command": "truthyValue", + "title": "manage workspace trust', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferencesRenderers.ts" + }, + { + "command": "falsyValue", + "title": "manage workspace trust', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferencesRenderers.ts" + }, + { + "command": "setDefaultValue", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferencesRenderers.ts" + }, + { + "command": "workbench.trust.manage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferencesRenderers.ts" + }, + { + "command": "folderSettingsTarget", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferencesWidgets.ts" + }, + { + "command": "workspaceTrust", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "commonlyUsed", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/cursor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/find", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/font", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/format", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/diffEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/minimap", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/suggestions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/files", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "workbench/appearance", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "workbench/breadcrumbs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "workbench/editor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "workbench/settings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "workbench/zenmode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "workbench/screencastmode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "window", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\themes\\common\\themeConfiguration.ts" + }, + { + "command": "window/newWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/explorer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/search", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/debug", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/testing", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/scm", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/extensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/terminal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/task", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/problems", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/output", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/comments", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/remote", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/timeline", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/notebook", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/audioCues", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/mergeEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/interactiveSession", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/http", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/keyboard", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/update", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/telemetry", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/settingsSync", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/experimental", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/other", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "security", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\workspace\\browser\\workspace.contribution.ts" + }, + { + "command": "security/workspace", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "searchResultModel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsTreeModels.ts" + }, + { + "command": "workbench.action.editListItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsWidgets.ts" + }, + { + "command": "workbench.action.removeListItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsWidgets.ts" + }, + { + "command": "workbench.action.resetListItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsWidgets.ts" + }, + { + "command": "workbench.action.clearCommandHistory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\quickaccess\\browser\\commandsQuickAccess.ts" + }, + { + "command": "workbench.action.gotoLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\quickaccess\\browser\\quickAccess.contribution.ts" + }, + { + "command": "remote.tunnelsView.autoForwardNeverShow", + "title": "ports', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\remote\\browser\\remoteExplorer.ts" + }, + { + "command": "workbench.action.triggerReconnect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\remote\\common\\remote.contribution.ts" + }, + { + "command": "workbench.action.pauseSocketWriting", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\remote\\common\\remote.contribution.ts" + }, + { + "command": "remote", + "title": "remote', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\electron-sandbox\\extensionManagementServerService.ts" + }, + { + "command": "editor.action.dirtydiff.previous", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\dirtydiffDecorator.ts" + }, + { + "command": "editor.action.dirtydiff.next", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\dirtydiffDecorator.ts" + }, + { + "command": "workbench.action.editor.previousChange", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\dirtydiffDecorator.ts" + }, + { + "command": "workbench.action.editor.nextChange", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\dirtydiffDecorator.ts" + }, + { + "command": "closeDirtyDiff", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\dirtydiffDecorator.ts" + }, + { + "command": "scminput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "scm", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "scm.acceptInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "scm.viewNextCommit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "scm.viewPreviousCommit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "scm.forceViewNextCommit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "scm.forceViewPreviousCommit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "scm.openInTerminal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "workbench.scm.action.setListViewMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scmViewPane.ts" + }, + { + "command": "workbench.scm.action.setTreeViewMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scmViewPane.ts" + }, + { + "command": "search", + "title": "searchConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\search\\browser\\search.contribution.ts" + }, + { + "command": "search.searchEditor.action.deleteFileResults", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\searchEditor\\browser\\searchEditor.contribution.ts" + }, + { + "command": "search.action.openNewEditorFromView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\searchEditor\\browser\\searchEditor.contribution.ts" + }, + { + "command": "insertSnippet", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\snippets\\browser\\tabCompletion.ts" + }, + { + "command": "workbench.action.openSnippets", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\snippets\\browser\\commands\\configureSnippets.ts" + }, + { + "command": "editor.action.insertSnippet", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\snippets\\browser\\commands\\insertSnippet.ts" + }, + { + "command": "editor.action.surroundWithSnippet", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\snippets\\browser\\commands\\surroundWithSnippet.ts" + }, + { + "command": "fooLang", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\snippets\\test\\browser\\snippetsService.test.ts" + }, + { + "command": "workbench.action.tasks.runTask", + "title": "RebuildAction.label', 'Run Rebuild Task'), category: tasksCategory });\n// MenuRegistry.addCommand( { id: 'workbench.action.tasks.clean', title: nls.localize('CleanAction.label', 'Run Clean Task'), category: tasksCategory });\n\nKeybindingsRegistry.registerKeybindingRule({\n\tid: 'workbench.action.tasks.build',\n\tweight: KeybindingWeight.WorkbenchContrib,\n\twhen: TaskCommandsRegistered,\n\tprimary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyB\n});\n\n// Tasks Output channel. Register it before using it in Task Service.\nconst outputChannelRegistry = Registry.as(OutputExt.OutputChannels);\noutputChannelRegistry.registerChannel({ id: AbstractTaskService.OutputChannelId, label: AbstractTaskService.OutputChannelLabel, log: false });\n\n\n// Register Quick Access\nconst quickAccessRegistry = (Registry.as(QuickAccessExtensions.Quickaccess));\nconst tasksPickerContextKey = 'inTasksPicker';\n\nquickAccessRegistry.registerQuickAccessProvider({\n\tctor: TasksQuickAccessProvider,\n\tprefix: TasksQuickAccessProvider.PREFIX,\n\tcontextKey: tasksPickerContextKey,\n\tplaceholder: nls.localize('tasksQuickAccessPlaceholder', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\terminalMenus.ts" + }, + { + "command": "terminateAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\abstractTaskService.ts" + }, + { + "command": "workbench.action.tasks.build", + "title": "tasksConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.showTasks", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.restartTask", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.terminate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.configureTaskRunner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\terminalMenus.ts" + }, + { + "command": "workbench.action.tasks.configureDefaultBuildTask", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.openWorkspaceFileTasks", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.showLog", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.reRunTask", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.test", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.configureDefaultTestTask", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.openUserTasks", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.rebuild", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.clean", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "task", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "clean", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\tasks.ts" + }, + { + "command": "build", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\tasks.ts" + }, + { + "command": "rebuild", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\tasks.ts" + }, + { + "command": "test", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\test\\browser\\viewContainerModel.test.ts" + }, + { + "command": "dotnetCore", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "msbuild", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "externalCommand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "maven", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "tsc.config", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "tsc.watch", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "terminalConfigHelper/launchRecommendationsIgnore", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\terminalConfigHelper.ts" + }, + { + "command": "terminal.rerunCommand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "terminal.copyCommand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "terminal.copyOutput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "terminal.copyOutputAsHtml", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "workbench.action.terminal.runRecentCommand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "workbench.action.terminal.goToRecentDirectory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "terminal.configureCommandDecorations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "terminal.learnShellIntegration", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "$1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\browser\\terminalQuickFixService.ts" + }, + { + "command": "extension.js-debug.debugTerminal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalProfileService.integrationTest.ts" + }, + { + "command": "info1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "warning1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "info2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "warning2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "info3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "error1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "warning3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "error2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "info", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "warning", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "error", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "4555", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\xterm\\shellIntegrationAddon.test.ts" + }, + { + "command": "Git Similar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "Git Two Dashes", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "Free Port", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "Git Push Set Upstream", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "Git Create Pr", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "Pwsh General Error", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "Unix Command Not Found", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\browser\\terminalQuickFixBuiltinActions.ts" + }, + { + "command": "Pwsh Unix Command Not Found Error", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "_revealTestInExplorer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testing.contribution.ts" + }, + { + "command": "vscode.peekTestError", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testing.contribution.ts" + }, + { + "command": "vscode.revealTest", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testing.contribution.ts" + }, + { + "command": "vscode.runTestsById", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testing.contribution.ts" + }, + { + "command": "vscode.pickMultipleTestProfiles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingConfigurationUi.ts" + }, + { + "command": "vscode.pickTestProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingConfigurationUi.ts" + }, + { + "command": "testing.explorer.filter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingExplorerFilter.ts" + }, + { + "command": "fuzzy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingExplorerFilter.ts" + }, + { + "command": "showExcluded", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingExplorerFilter.ts" + }, + { + "command": "removeExcluded", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingExplorerFilter.ts" + }, + { + "command": "editor.closeTestPeek", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingOutputPeek.ts" + }, + { + "command": "testing", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\common\\configuration.ts" + }, + { + "command": "t", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\test\\common\\testResultService.test.ts" + }, + { + "command": "some-id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\test\\common\\testResultService.test.ts" + }, + { + "command": "', theme: FileIconThemeData.noIconTheme, label: localize(", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\themes\\browser\\themes.contribution.ts" + }, + { + "command": "workbench.action.generateColorTheme", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\themes\\browser\\themes.contribution.ts" + }, + { + "command": "timeline.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\timeline\\browser\\timeline.contribution.ts" + }, + { + "command": "timeline", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\timeline\\browser\\timeline.contribution.ts" + }, + { + "command": "sync~spin", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\timeline\\browser\\timelinePane.ts" + }, + { + "command": "timeline.refresh", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\timeline\\browser\\timelinePane.ts" + }, + { + "command": "timeline.toggleFollowActiveEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\timeline\\browser\\timelinePane.ts" + }, + { + "command": "editor.showTypeHierarchy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\typeHierarchy\\browser\\typeHierarchy.contribution.ts" + }, + { + "command": "editor.showSupertypes", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\typeHierarchy\\browser\\typeHierarchy.contribution.ts" + }, + { + "command": "editor.showSubtypes", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\typeHierarchy\\browser\\typeHierarchy.contribution.ts" + }, + { + "command": "editor.refocusTypeHierarchy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\typeHierarchy\\browser\\typeHierarchy.contribution.ts" + }, + { + "command": "editor.closeTypeHierarchy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\typeHierarchy\\browser\\typeHierarchy.contribution.ts" + }, + { + "command": "update.checkForUpdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.contribution.ts" + }, + { + "command": "update.downloadUpdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.contribution.ts" + }, + { + "command": "update.installUpdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.contribution.ts" + }, + { + "command": "update.restartToUpdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.contribution.ts" + }, + { + "command": "_update.applyupdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.contribution.ts" + }, + { + "command": "update.check", + "title": "checkForUpdates', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "update.checking", + "title": "checkingForUpdates', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "update.downloadNow", + "title": "download update_1', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "update.downloading", + "title": "DownloadingUpdate', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "update.install", + "title": "installUpdate...', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "update.updating", + "title": "installingUpdate', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "update.restart", + "title": "restartToUpdate', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "workbench.action.manageTrustedDomain", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\url\\browser\\trustedDomains.ts" + }, + { + "command": "manage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\url\\browser\\trustedDomains.ts" + }, + { + "command": "trust", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\url\\browser\\trustedDomains.ts" + }, + { + "command": "workbench.action.url.openUrl", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\url\\browser\\url.contribution.ts" + }, + { + "command": "workbench.profiles.actions.createProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataProfile\\browser\\userDataProfile.ts" + }, + { + "command": "workbench.profiles.actions.deleteProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataProfile\\browser\\userDataProfile.ts" + }, + { + "command": "workbench.profiles.actions.help", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataProfile\\browser\\userDataProfile.ts" + }, + { + "command": "workbench.profiles.actions.cleanupProfiles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataProfile\\browser\\userDataProfileActions.ts" + }, + { + "command": "workbench.profiles.actions.resetWorkspaces", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataProfile\\browser\\userDataProfileActions.ts" + }, + { + "command": "workbench.userDataSync.actions.turnOff", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.syncNow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.settings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.showSyncedData", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "insiders", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "stable", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.turnOn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userData.actions.turningOn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userData.actions.cancelTurnOn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userData.actions.signin", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.manage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.help", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.acceptMerges", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.actions.syncData.reset", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userData.actions.openSyncBackupsFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\electron-sandbox\\userDataSync.contribution.ts" + }, + { + "command": "workbench.action.webview.openDeveloperTools", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\webview\\electron-sandbox\\webviewCommands.ts" + }, + { + "command": "welcome.banner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeBanner\\browser\\welcomeBanner.contribution.ts" + }, + { + "command": "workbench.action.openWalkthrough", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStarted.contribution.ts" + }, + { + "command": "welcome.goBack", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStarted.contribution.ts" + }, + { + "command": "walkthroughs.selectStep", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStarted.contribution.ts" + }, + { + "command": "welcome.markStepComplete", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStarted.contribution.ts" + }, + { + "command": "welcome.markStepIncomplete", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStarted.contribution.ts" + }, + { + "command": "welcome.showAllWalkthroughs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStarted.contribution.ts" + }, + { + "command": "resetGettingStartedProgress", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStartedService.ts" + }, + { + "command": "welcome.showNewFileEntries", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeViews\\common\\newFile.contribution.ts" + }, + { + "command": "topLevelOpenMac", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelOpenFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelOpenFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelOpenFolderWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelGitClone", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelGitOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelShowWalkthroughs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelRemoteOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "Setup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "pickColorTheme", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "commandPaletteTask", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "extensionsWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "findLanguageExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "pickAFolderTask-Mac", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "pickAFolderTask-Other", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "quickOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "SetupWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "pickColorThemeWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "settingsSyncWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "commandPaletteTaskWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "menuBarWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "extensionsWebWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "findLanguageExtensionsWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "pickAFolderTask-WebWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "quickOpenWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "Beginner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "playground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "settings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "videoTutorial", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "Intermediate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "splitview", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "debugging", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "scmClone", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "scmSetup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "installGit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "tasks", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "shortcuts", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "notebooks", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "notebookProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "workbench.action.showInteractivePlayground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeWalkthrough\\browser\\walkThrough.contribution.ts" + }, + { + "command": "workbench.action.interactivePlayground.arrowUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeWalkthrough\\browser\\walkThroughActions.ts" + }, + { + "command": "workbench.action.interactivePlayground.arrowDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeWalkthrough\\browser\\walkThroughActions.ts" + }, + { + "command": "workbench.action.interactivePlayground.pageUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeWalkthrough\\browser\\walkThroughActions.ts" + }, + { + "command": "workbench.action.interactivePlayground.pageDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeWalkthrough\\browser\\walkThroughActions.ts" + }, + { + "command": "editTrustedUri", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\workspace\\browser\\workspaceTrustEditor.ts" + }, + { + "command": "pickerTrustedUri", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\workspace\\browser\\workspaceTrustEditor.ts" + }, + { + "command": "deleteTrustedUri", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\workspace\\browser\\workspaceTrustEditor.ts" + }, + { + "command": "workspaces.dontPromptToOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\workspaces\\browser\\workspaces.contribution.ts" + }, + { + "command": "workbench.action.openWorkspaceFromEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\workspaces\\browser\\workspaces.contribution.ts" + }, + { + "command": "workbench.action.quit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "workbench.action.newWindowTab", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "workbench.action.showPreviousWindowTab", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "workbench.action.showNextWindowTab", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "workbench.action.moveWindowTabToNewWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "workbench.action.mergeAllWindowTabs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "workbench.action.toggleWindowTabsBar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "join.closeStorage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.main.ts" + }, + { + "command": "appRootWarning.banner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\window.ts" + }, + { + "command": "windowseol.banner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\window.ts" + }, + { + "command": "windowseol", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\window.ts" + }, + { + "command": "macoseol.banner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\window.ts" + }, + { + "command": "macoseol", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\window.ts" + }, + { + "command": "workbench.action.toggleDevTools", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.configureRuntimeArguments", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.reloadWindowWithExtensionsDisabled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.openUserDataFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.installCommandLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\installActions.ts" + }, + { + "command": "workbench.action.uninstallCommandLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\installActions.ts" + }, + { + "command": "workbench.action.zoomIn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.zoomOut", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.zoomReset", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.switchWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.quickSwitchWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\windowActions.ts" + }, + { + "command": "noAuthenticationProviders", + "title": "loading', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\authentication\\browser\\authenticationService.ts" + }, + { + "command": "input1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\configurationResolver\\test\\electron-sandbox\\configurationResolverService.test.ts" + }, + { + "command": "input2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\configurationResolver\\test\\electron-sandbox\\configurationResolverService.test.ts" + }, + { + "command": "input3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\configurationResolver\\test\\electron-sandbox\\configurationResolverService.test.ts" + }, + { + "command": "input4", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\configurationResolver\\test\\electron-sandbox\\configurationResolverService.test.ts" + }, + { + "command": "TEST_EDITOR", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\editor\\test\\browser\\editorResolverService.test.ts" + }, + { + "command": "TEST_EDITOR_PRIMARY", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\editor\\test\\browser\\editorResolverService.test.ts" + }, + { + "command": "TEST_EDITOR_SECONDARY", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\editor\\test\\browser\\editorResolverService.test.ts" + }, + { + "command": "TEST_EDITOR_2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\editor\\test\\browser\\editorResolverService.test.ts" + }, + { + "command": "TestEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\editor\\test\\browser\\editorService.test.ts" + }, + { + "command": "extension.bisect.start", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\browser\\extensionBisect.ts" + }, + { + "command": "extension.bisect.next", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\browser\\extensionBisect.ts" + }, + { + "command": "extension.bisect.stop", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\browser\\extensionBisect.ts" + }, + { + "command": "workbench.extensions.action.openInstalledWebExtensionsResource", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\browser\\webExtensionsScannerService.ts" + }, + { + "command": "web", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\common\\extensionManagementServerService.ts" + }, + { + "command": "pub.a", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\test\\browser\\extensionEnablementService.test.ts" + }, + { + "command": "pub.b", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\test\\browser\\extensionEnablementService.test.ts" + }, + { + "command": "pub.c", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\test\\browser\\extensionEnablementService.test.ts" + }, + { + "command": "workbench.extensions.action.manageAuthorizedExtensionURIs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensions\\browser\\extensionUrlHandler.ts" + }, + { + "command": "editor.action.measureExtHostLatency", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensions\\common\\extensionHostManager.ts" + }, + { + "command": "join.extensionDevelopment", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensions\\electron-sandbox\\localProcessExtensionHost.ts" + }, + { + "command": "workbench.action.restartExtensionHost", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensions\\electron-sandbox\\nativeExtensionService.ts" + }, + { + "command": "workbench.issue", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\issue\\electron-sandbox\\issueService.ts" + }, + { + "command": "', text: ", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\tr.win.ts" + }, + { + "command": "com.apple.keylayout.German", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\de.darwin.ts" + }, + { + "command": "com.apple.keylayout.Dvorak", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\dvorak.darwin.ts" + }, + { + "command": "com.apple.keylayout.USExtended", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en-ext.darwin.ts" + }, + { + "command": "com.apple.keylayout.USInternational-PC", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en-intl.darwin.ts" + }, + { + "command": "0001", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en-intl.win.ts" + }, + { + "command": "com.apple.keylayout.British", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en-uk.darwin.ts" + }, + { + "command": "com.apple.keylayout.US", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.apple.keylayout.ABC", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.sogou.inputmethod.sogou.pinyin", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.apple.inputmethod.Kotoeri.Roman", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.apple.inputmethod.Kotoeri.Japanese", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\jp.darwin.ts" + }, + { + "command": "com.apple.keylayout.Australian", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.apple.keylayout.Canadian", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.apple.keylayout.Brazilian", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.apple.keylayout.Spanish-ISO", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\es.darwin.ts" + }, + { + "command": "com.apple.keylayout.French", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\fr.darwin.ts" + }, + { + "command": "com.apple.keylayout.Italian-Pro", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\it.darwin.ts" + }, + { + "command": "com.google.inputmethod.Japanese.Roman", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\jp-roman.darwin.ts" + }, + { + "command": "com.apple.inputmethod.Korean.2SetKorean", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\ko.darwin.ts" + }, + { + "command": "com.apple.keylayout.PolishPro", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\pl.darwin.ts" + }, + { + "command": "com.apple.keylayout.Brazilian-Pro", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\pt.darwin.ts" + }, + { + "command": "com.apple.keylayout.Russian", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\ru.darwin.ts" + }, + { + "command": "com.apple.keylayout.Swedish-Pro", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\sv.darwin.ts" + }, + { + "command": "com.apple.inputmethod.SCIM.ITABC", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\zh-hans.darwin.ts" + }, + { + "command": "${1:languageId}", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\language\\common\\languageService.ts" + }, + { + "command": "openArgv", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\localization\\electron-sandbox\\localeService.ts" + }, + { + "command": "mostCommonlyUsed", + "title": "commonlyUsed', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\preferences\\common\\preferencesModels.ts" + }, + { + "command": "statusBar.entry.showTooltip", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\statusbar\\browser\\statusbar.ts" + }, + { + "command": "global", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\storage\\browser\\storageService.ts" + }, + { + "command": "workspace-storage-test", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\storage\\test\\browser\\storageService.test.ts" + }, + { + "command": "join.textFiles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\textfile\\electron-sandbox\\nativeTextFileService.ts" + }, + { + "command": "plumbus0", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\textfile\\test\\browser\\textFileService.test.ts" + }, + { + "command": "plumbus1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\textfile\\test\\browser\\textFileService.test.ts" + }, + { + "command": "plumbus2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\textfile\\test\\browser\\textFileService.test.ts" + }, + { + "command": "${2:id}", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\themes\\common\\themeExtensionPoints.ts" + }, + { + "command": "extension.open", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\extensionsResource.ts" + }, + { + "command": "userDataProfiles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileImportExportService.ts" + }, + { + "command": "previewProfile.installExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileImportExportService.ts" + }, + { + "command": "createAndEnterProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileManagement.ts" + }, + { + "command": "createAndEnterTransientProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileManagement.ts" + }, + { + "command": "updateProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileManagement.ts" + }, + { + "command": "removeProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileManagement.ts" + }, + { + "command": "switchProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileManagement.ts" + }, + { + "command": "_workbench.output.showViewsLog", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\common\\viewContainerModel.ts" + }, + { + "command": "view1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\test\\browser\\viewDescriptorService.test.ts" + }, + { + "command": "view2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\test\\browser\\viewDescriptorService.test.ts" + }, + { + "command": "view3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\test\\browser\\viewDescriptorService.test.ts" + }, + { + "command": "view5", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\test\\browser\\viewContainerModel.test.ts" + }, + { + "command": "view4", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\test\\browser\\viewDescriptorService.test.ts" + }, + { + "command": "fileWorkingCopy.overwrite", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopy.ts" + }, + { + "command": "fileWorkingCopy.revert", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopy.ts" + }, + { + "command": "fileWorkingCopy.saveElevated", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopy.ts" + }, + { + "command": "fileWorkingCopy.unlock", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopy.ts" + }, + { + "command": "fileWorkingCopy.retry", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopy.ts" + }, + { + "command": "fileWorkingCopy.saveAs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopy.ts" + }, + { + "command": "join.fileWorkingCopyManager", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopyManager.ts" + }, + { + "command": "join.workingCopyHistory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\workingCopyHistoryService.ts" + }, + { + "command": "join.workingCopyBackups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\electron-sandbox\\workingCopyBackupService.ts" + }, + { + "command": "resource-input-test", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\editor\\textResourceEditorInput.test.ts" + }, + { + "command": "1-right", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "not-existing", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "1-left", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "2-left", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "2-right", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "relative", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "same", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\common\\notifications.test.ts" + }, + { + "command": "lightbulb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\test\\smoke\\src\\areas\\task\\task-quick-pick.test.ts" + } + ] +} \ No newline at end of file diff --git a/AllCommands.py b/AllCommands.py new file mode 100644 index 0000000..2bf5a6b --- /dev/null +++ b/AllCommands.py @@ -0,0 +1,17 @@ +import json +import PlugInCommands +import builtInCommands + +def ExportCommands(): + plugin_data = PlugInCommands.main() + builtin_data = builtInCommands.main() + + merged_data = {'plugin_commands': plugin_data, 'builtin_commands': builtin_data} + + with open("AllCommands.json", 'w', encoding='utf-8') as f_out: + json.dump(merged_data, f_out, indent=2) + + return merged_data + +if __name__ == "__main__": + ExportCommands() diff --git a/Built in Commands.MD b/Built in Commands.MD new file mode 100644 index 0000000..6e5fd18 --- /dev/null +++ b/Built in Commands.MD @@ -0,0 +1,66 @@ +## **Built-in Commands:** + +This Python script `BuiltInCommands.py` extracts the commands, titles, categories, sources, and file paths from the Visual Studio Code [VSCode repository](https://github.com/microsoft/vscode). It scans through the JSON and TypeScript files in the repository and collects the required information, then saves it in a single JSON file called `builtInCommandsOutput.json`. + +### *Features:* + +- Clone the VSCode repository. +- Extract command information from JSON and TypeScript files. +- Save the extracted information in a JSON file. + +### *Prerequisites:* + +Before running this script, make sure you have Python 3.x installed on your system. + +## #*How to Use:* + +1. Clone this repository or download the script file. +2. Open a terminal or command prompt and navigate to the directory where the script is located. +3. Run the script using the following command: + +```bash +python BuiltInCommands.py +``` +4. The script will clone the VSCode repository, extract the command information, and save it to `builtInCommandsOutput.json`. + +### *Output:* +The output file, AllCommands.json, contains a list of dictionaries with the following keys: + +command: The command ID. +title: The command title. +category: The command category. +source: The command source. +file_path: The file path where the command is defined. + + +### *Code Explanation:* +* The provided code is a Python script that extracts command information from the Visual Studio Code (VSCode) repository. It searches for commands in both JSON and TypeScript files and then saves the extracted data in a JSON file. The following sections explain the main functions of the script: +* Importing Required Libraries +The script imports the following libraries: +`glob:` To search for files matching a specified pattern. +`re:` To work with regular expressions. +`json:` To handle JSON data. +`subprocess:` To run shell commands. +`os:` To interact with the operating system. +``` +pip install os json subprocess glob re +``` + + +##### *Functions:* +* `clone_vscode_repository(repo_url, target_dir):` This function takes the repository URL and target directory as arguments. It clones the VSCode repository if the target directory doesn't already exist. If the target directory exists, it prints a message indicating that the cloning process is skipped. + +* `extract_commands_and_titles(file_path, file_type):` This function takes a file path and file type (either "json" or "typescript") as arguments. It reads the content of the specified file and extracts command information such as command ID, title, category, source, and file path using regular expressions. The extracted information is returned as a list of dictionaries. + +* `find_missing_info(target_dir, unique_commands):` This function takes the target directory and a dictionary of unique commands as arguments. It searches for JSON and TypeScript files in the target directory and updates the unique_commands dictionary with any missing information found in those files. + +* `main():` This is the main function of the script. It performs the following steps: + + * Define the repository URL and target directory. + * Clone the VSCode repository using the `clone_vscode_repository()` function. + * Define the search patterns for JSON and TypeScript files. + * Create an empty dictionary to store unique commands. + * Iterate through the JSON and TypeScript files, extract the command information using the `extract_commands_and_titles()` function, and store it in the unique_commands dictionary. + * Update the `unique_commands` dictionary with any missing information using the `find_missing_info()` function. + * Convert the `unique_commands` dictionary to a list of values. + * Save the combined data to a JSON file named `builtInCommandsOutput.json`. diff --git a/CombinedPickleCommands.pkl b/CombinedPickleCommands.pkl new file mode 100644 index 0000000..47966f2 Binary files /dev/null and b/CombinedPickleCommands.pkl differ diff --git a/EmbedAllCommands.MD b/EmbedAllCommands.MD new file mode 100644 index 0000000..b7547e1 --- /dev/null +++ b/EmbedAllCommands.MD @@ -0,0 +1,94 @@ +# Embedding-Generator +This repository contains a Python script that generates sentence embeddings for command titles and command IDs from two different JSON files, processes the data using the SBERT method, and saves the embeddings as separate pickle files. It also combines the embeddings into a single pickle file. + +## Input: +* The script takes two JSON files as input with the following command URLs:: + * A built-in commands file: [AllKeybindingCommands.json](https://github.com/parthiv2048/SmartCommand/blob/refactor/NLP_and_backend/AllKeybindingCommands.json) + ``` + command_url1 = "https://raw.githubusercontent.com/parthiv2048/SmartCommand/refactor/NLP_and_backend/AllKeybindingCommands.json" + ``` + + * A plugin commands file: [PlugInCommandsOutput.json](https://github.com/Aljbab14/SmartCommand/blob/refactor/PlugInCommandsOutput.json) + ``` + command_url2 = "https://raw.githubusercontent.com/Aljbab14/SmartCommand/refactor/PlugInCommandsOutput.json" + ``` + +## Processing: +* Load the JSON files from the specified URLs using the load_commands function. +* Remove duplicate commands from the two JSON files with different formats using the remove_duplicates function. +* Generate sentence embeddings for command titles and command IDs using the embed_commands function, which utilizes the emb_sbert function to encode sentences with the SBERT method. +* Save the generated embeddings as a pickle file using the pickle_embeddings function. +* Execute the entire process by running the main function. + +## Output: +The generated embeddings are saved in separate pickle files, and the script also combines the embeddings from both JSON files into a single pickle file: + +* `PickleBuiltinCommands.pkl` +* `PicklePluginCommands.pkl` +* `CombinedPickleCommands.pkl` + +### `CombinedPickleCommands.pkl` file results: +``` +Data loaded from pickle file: +{'command_id': array(['undo', 'workbench.action.navigatePreviousInNavigationLocations', + 'workbench.action.terminal.newWithProfile', ..., + 'testExplorerConverter.useNativeTesting', + 'testExplorerConverter.activate', 'smart-command.NLPSearch'], + dtype=' {\n\t\tconst controller = GhostTextController.get(editor);\n\t\tif (controller) {\n\t\t\tcontroller.commitPartially();\n\t\t}\n\t}\n}\n\nexport class AcceptInlineCompletion extends EditorAction {\n\tconstructor() {\n\t\tsuper({\n\t\t\tid: inlineSuggestCommitId,\n\t\t\tlabel: nls.localize('action.inlineSuggest.accept', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\inlineCompletions\\browser\\ghostTextController.ts" + }, + { + "command": "editor.action.inlineSuggest.acceptNextWord", + "title": "accept', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\inlineCompletions\\browser\\ghostTextController.ts" + }, + { + "command": "editor.action.inlineSuggest.undo", + "title": "action.inlineSuggest.alwaysShowToolbar', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\inlineCompletions\\browser\\ghostTextController.ts" + }, + { + "command": "editor.action.inPlaceReplace.up", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\inPlaceReplace\\browser\\inPlaceReplace.ts" + }, + { + "command": "editor.action.inPlaceReplace.down", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\inPlaceReplace\\browser\\inPlaceReplace.ts" + }, + { + "command": "expandLineSelection", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\lineSelection\\browser\\lineSelection.ts" + }, + { + "command": "editor.action.copyLinesUpAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.copyLinesDownAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.duplicateSelection", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.moveLinesUpAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.moveLinesDownAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.sortLinesAscending", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.sortLinesDescending", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.removeDuplicateLines", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.deleteLines", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.indentLines", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.outdentLines", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.insertLineBefore", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.insertLineAfter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "deleteAllLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "deleteAllRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.joinLines", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transpose", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transformToUppercase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transformToLowercase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transformToTitlecase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transformToSnakecase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transformToCamelcase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.transformToKebabcase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linesOperations\\browser\\linesOperations.ts" + }, + { + "command": "editor.action.linkedEditing", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linkedEditing\\browser\\linkedEditing.ts" + }, + { + "command": "cancelLinkedEditingInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\linkedEditing\\browser\\linkedEditing.ts" + }, + { + "command": "editor.action.openLink", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\links\\browser\\links.ts" + }, + { + "command": "leaveEditorMessage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\message\\browser\\messageController.ts" + }, + { + "command": "editor.action.insertCursorAbove", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.insertCursorBelow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.insertCursorAtEndOfEachLineSelected", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.addCursorsToBottom", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.addCursorsToTop", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.addSelectionToNextFindMatch", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.addSelectionToPreviousFindMatch", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.moveSelectionToNextFindMatch", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.moveSelectionToPreviousFindMatch", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.selectHighlights", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.changeAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.focusNextCursor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.focusPreviousCursor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\multicursor\\browser\\multicursor.ts" + }, + { + "command": "editor.action.triggerParameterHints", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\parameterHints\\browser\\parameterHints.ts" + }, + { + "command": "closeParameterHints", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\parameterHints\\browser\\parameterHints.ts" + }, + { + "command": "showPrevParameterHint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\parameterHints\\browser\\parameterHints.ts" + }, + { + "command": "showNextParameterHint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\parameterHints\\browser\\parameterHints.ts" + }, + { + "command": "editor.action.rename", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\rename\\browser\\rename.ts" + }, + { + "command": "acceptRenameInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\rename\\browser\\rename.ts" + }, + { + "command": "acceptRenameInputWithPreview", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\rename\\browser\\rename.ts" + }, + { + "command": "cancelRenameInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\rename\\browser\\rename.ts" + }, + { + "command": "testMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\browser\\widget\\codeEditorWidget.test.ts" + }, + { + "command": "testMode2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\semanticTokens\\test\\browser\\documentSemanticTokens.test.ts" + }, + { + "command": "editor.action.smartSelect.expand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\smartSelect\\browser\\smartSelect.ts" + }, + { + "command": "editor.action.smartSelect.shrink", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\smartSelect\\browser\\smartSelect.ts" + }, + { + "command": "jumpToNextSnippetPlaceholder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\snippet\\browser\\snippetController2.ts" + }, + { + "command": "jumpToPrevSnippetPlaceholder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\snippet\\browser\\snippetController2.ts" + }, + { + "command": "leaveSnippet", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\snippet\\browser\\snippetController2.ts" + }, + { + "command": "acceptSnippet", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\snippet\\browser\\snippetController2.ts" + }, + { + "command": "foo", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\test\\browser\\notebookServiceImpl.test.ts" + }, + { + "command": "workspace-id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\test\\browser\\editSessions.test.ts" + }, + { + "command": "editor.action.toggleStickyScroll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\stickyScroll\\browser\\stickyScrollActions.ts" + }, + { + "command": "editor.action.focusStickyScroll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\stickyScroll\\browser\\stickyScrollActions.ts" + }, + { + "command": "editor.action.selectNextStickyScrollLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\stickyScroll\\browser\\stickyScrollActions.ts" + }, + { + "command": "editor.action.selectPreviousStickyScrollLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\stickyScroll\\browser\\stickyScrollActions.ts" + }, + { + "command": "editor.action.goToFocusedStickyScrollLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\stickyScroll\\browser\\stickyScrollActions.ts" + }, + { + "command": "editor.action.selectEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\stickyScroll\\browser\\stickyScrollActions.ts" + }, + { + "command": "acceptSelectedSuggestion", + "title": "accept.insert', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "acceptAlternativeSelectedSuggestion", + "title": "accept.insert', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "hideSuggestWidget", + "title": "accept.replace', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "selectNextSuggestion", + "title": "accept.replace', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "selectNextPageSuggestion", + "title": "accept.insert', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "selectLastSuggestion", + "title": "detail.more', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "selectPrevSuggestion", + "title": "detail.less', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "selectPrevPageSuggestion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "selectFirstSuggestion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "focusSuggestion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "focusAndAcceptSuggestion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "toggleSuggestionDetails", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "toggleExplainMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "toggleSuggestionFocus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "insertBestCompletion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "insertNextSuggestion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "insertPrevSuggestion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "editor.action.resetSuggestSize", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\suggest\\browser\\suggestController.ts" + }, + { + "command": "editor.action.forceRetokenize", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\tokenization\\browser\\tokenization.ts" + }, + { + "command": "unicodeHighlightBanner", + "title": "unicodeHighlight.configureUnicodeHighlightOptions', 'Configure Unicode Highlight Options') }\n\t\t);\n\n\t\tif (result) {\n\t\t\tawait result.run();\n\t\t}\n\t}\n}\n\nasync function excludeCharFromBeingHighlighted(configurationService: IConfigurationService, charCodes: number[]) {\n\tconst existingValue = configurationService.getValue(unicodeHighlightConfigKeys.allowedCharacters);\n\n\tlet value: Record;\n\tif ((typeof existingValue === 'object') && existingValue) {\n\t\tvalue = existingValue as any;\n\t} else {\n\t\tvalue = {};\n\t}\n\n\tfor (const charCode of charCodes) {\n\t\tvalue[String.fromCodePoint(charCode)] = true;\n\t}\n\n\tawait configurationService.updateValue(unicodeHighlightConfigKeys.allowedCharacters, value, ConfigurationTarget.USER);\n}\n\nasync function excludeLocaleFromBeingHighlighted(configurationService: IConfigurationService, locales: string[]) {\n\tconst existingValue = configurationService.inspect(unicodeHighlightConfigKeys.allowedLocales).user?.value;\n\n\tlet value: Record;\n\tif ((typeof existingValue === 'object", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\unicodeHighlighter\\browser\\unicodeHighlighter.ts" + }, + { + "command": "editor.action.wordHighlight.next", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordHighlighter\\browser\\wordHighlighter.ts" + }, + { + "command": "editor.action.wordHighlight.prev", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordHighlighter\\browser\\wordHighlighter.ts" + }, + { + "command": "editor.action.wordHighlight.trigger", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordHighlighter\\browser\\wordHighlighter.ts" + }, + { + "command": "cursorWordStartLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordEndLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordStartLeftSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordEndLeftSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordLeftSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordAccessibilityLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordAccessibilityLeftSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordStartRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordEndRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordStartRightSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordEndRightSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordRightSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordAccessibilityRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "cursorWordAccessibilityRightSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordStartLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordEndLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordStartRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordEndRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteInsideWord", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordOperations\\browser\\wordOperations.ts" + }, + { + "command": "deleteWordPartLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordPartOperations\\browser\\wordPartOperations.ts" + }, + { + "command": "deleteWordPartRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordPartOperations\\browser\\wordPartOperations.ts" + }, + { + "command": "cursorWordPartLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordPartOperations\\browser\\wordPartOperations.ts" + }, + { + "command": "cursorWordPartLeftSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordPartOperations\\browser\\wordPartOperations.ts" + }, + { + "command": "cursorWordPartRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordPartOperations\\browser\\wordPartOperations.ts" + }, + { + "command": "cursorWordPartRightSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\contrib\\wordPartOperations\\browser\\wordPartOperations.ts" + }, + { + "command": "editor.action.showAccessibilityHelp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\accessibility\\accessibility.ts" + }, + { + "command": "closeAccessibilityHelp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\accessibility\\accessibility.ts" + }, + { + "command": "editor.action.inspectTokens", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\standalone\\browser\\inspectTokens\\inspectTokens.ts" + }, + { + "command": "editor.action.toggleHighContrast", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\standalone\\browser\\toggleHighContrast\\toggleHighContrast.ts" + }, + { + "command": "editorBackground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\browser\\services\\decorationRenderOptions.test.ts" + }, + { + "command": "editorBorder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\browser\\services\\decorationRenderOptions.test.ts" + }, + { + "command": "infoForeground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\browser\\services\\decorationRenderOptions.test.ts" + }, + { + "command": "monaco", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "codefile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "docker", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "niceregex", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "foobar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "azure-looser", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "azure-winner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "monaco2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "monaco3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "data", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesAssociations.test.ts" + }, + { + "command": "outputLangId", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesRegistry.test.ts" + }, + { + "command": "langId", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\editor\\test\\common\\services\\languagesRegistry.test.ts" + }, + { + "command": "label", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\browser\\toolbar.ts" + }, + { + "command": "resetThisMenu", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\browser\\toolbar.ts" + }, + { + "command": "menu.resetHiddenStates", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\common\\menuResetAction.ts" + }, + { + "command": "one", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\test\\common\\menuService.test.ts" + }, + { + "command": "two", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\test\\common\\menuService.test.ts" + }, + { + "command": "three", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\test\\common\\menuService.test.ts" + }, + { + "command": "four", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\test\\common\\menuService.test.ts" + }, + { + "command": "five", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actions\\test\\common\\menuService.test.ts" + }, + { + "command": "d", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\extensionsMerge.test.ts" + }, + { + "command": "hideCodeActionWidget", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actionWidget\\browser\\actionWidget.ts" + }, + { + "command": "selectPrevCodeAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actionWidget\\browser\\actionWidget.ts" + }, + { + "command": "selectNextCodeAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\actionWidget\\browser\\actionWidget.ts" + }, + { + "command": "test3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\commands\\test\\common\\commands.test.ts" + }, + { + "command": "defaultOverrides", + "title": "defaultLanguageConfigurationOverrides.title', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\configuration\\common\\configurationRegistry.ts" + }, + { + "command": "getContextKeyInfo", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\contextkey\\browser\\contextKeyService.ts" + }, + { + "command": "pub.extension-name", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\extensionManagement\\test\\common\\extensionManagement.test.ts" + }, + { + "command": "test.authentication", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\extensionManagement\\test\\common\\extensionNls.test.ts" + }, + { + "command": "pub.name", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\extensionManagement\\test\\node\\extensionsScannerService.test.ts" + }, + { + "command": "uuid", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\extensionManagement\\test\\node\\extensionsScannerService.test.ts" + }, + { + "command": "pub.name2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\extensionManagement\\test\\node\\extensionsScannerService.test.ts" + }, + { + "command": "history.showPrevious", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\history\\browser\\contextScopedHistoryWidget.ts" + }, + { + "command": "history.showNext", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\history\\browser\\contextScopedHistoryWidget.ts" + }, + { + "command": "workbench", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\themes\\common\\themeConfiguration.ts" + }, + { + "command": "vscode.menubar.separator", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\parts\\titlebar\\menubarControl.ts" + }, + { + "command": "http", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\request\\common\\request.ts" + }, + { + "command": "id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\storage\\test\\browser\\storageService.test.ts" + }, + { + "command": "terminal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "$invalid", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\theme\\common\\tokenClassificationRegistry.ts" + }, + { + "command": "update", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\update\\common\\update.config.contribution.ts" + }, + { + "command": ") ? key.substring(", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\common\\extensionsMerge.ts" + }, + { + "command": "settingsSync", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "e", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\extensionsMerge.test.ts" + }, + { + "command": "A", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\extensionsMerge.test.ts" + }, + { + "command": "3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "4", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\userDataProfilesManifestMerge.test.ts" + }, + { + "command": "5", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\userDataProfilesManifestMerge.test.ts" + }, + { + "command": "6", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\userDataProfilesManifestMerge.test.ts" + }, + { + "command": "7", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\userDataProfilesManifestMerge.test.ts" + }, + { + "command": "configuredAuthProvider", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\userDataSync\\test\\common\\userDataSyncStoreService.test.ts" + }, + { + "command": "1234", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\workspaces\\test\\electron-main\\workspacesHistoryStorage.test.ts" + }, + { + "command": "53b714b46ef1a2d4346568b4f591028c", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\workspaces\\test\\electron-main\\workspacesHistoryStorage.test.ts" + }, + { + "command": "ext-dev", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\workspace\\common\\workspace.ts" + }, + { + "command": "empty-window", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\platform\\workspace\\common\\workspace.ts" + }, + { + "command": "workbench.action.focusCommentsPanel", + "title": "collapseAll', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsView.ts" + }, + { + "command": "files.participants.resetChoice", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\browser\\mainThreadFileSystemEventService.ts" + }, + { + "command": "${1:id}", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\themes\\common\\themeExtensionPoints.ts" + }, + { + "command": "workbench.action.showTreeHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\browser\\viewsExtensionPoint.ts" + }, + { + "command": "${id}", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\common\\extHostUriOpener.ts" + }, + { + "command": "uniquestring", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostEditorTabs.test.ts" + }, + { + "command": "AAA", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostEditorTabs.test.ts" + }, + { + "command": "BBB", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostEditorTabs.test.ts" + }, + { + "command": "uniquestring2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostEditorTabs.test.ts" + }, + { + "command": "uniquestring3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostEditorTabs.test.ts" + }, + { + "command": "_notebook_editor_0", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostNotebookKernel.test.ts" + }, + { + "command": "_notebook_editor_2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostNotebook.test.ts" + }, + { + "command": "ctrlId\\0tag1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostTesting.test.ts" + }, + { + "command": "ctrlId\\0tag2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostTesting.test.ts" + }, + { + "command": "ctrlId\\0tag3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\extHostTesting.test.ts" + }, + { + "command": "testContainer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\browser\\mainThreadTreeViews.test.ts" + }, + { + "command": "1000", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\api\\test\\node\\extHostTunnelService.test.ts" + }, + { + "command": "workbench.action.resetUserData", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\web.main.ts" + }, + { + "command": "workbench.action.inspectContextKeys", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.toggleScreencastMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.logStorage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.logWorkingCopies", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\developerActions.ts" + }, + { + "command": "screencastMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.closeSidebar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.toggleCenteredLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.toggleEditorVisibility", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.toggleZenMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.exitZenMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.toggleMenuBar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.resetViewLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.moveView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.moveFocusedView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "_.panel.newcontainer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "_.sidebar.newcontainer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "_.auxiliarybar.newcontainer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.resetFocusedViewLocation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.increaseViewSize", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.increaseViewWidth", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.increaseViewHeight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.decreaseViewSize", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.decreaseViewWidth", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.decreaseViewHeight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "workbench.action.customizeLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\layoutActions.ts" + }, + { + "command": "list.focusDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.focusUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.focusPageDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.focusPageUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.focusFirst", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.focusLast", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.expandSelectionDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.expandSelectionUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.collapse", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.collapseAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.collapseAllToFocus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.focusParent", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.expand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.select", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.selectAndPreserveFocus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.selectAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.toggleSelection", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.toggleExpand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.clear", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.triggerTypeNavigation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.toggleFindMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.find", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.closeFind", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.scrollUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.scrollDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.scrollLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "list.scrollRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\listCommands.ts" + }, + { + "command": "workbench.action.navigateLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\navigationActions.ts" + }, + { + "command": "workbench.action.navigateRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\navigationActions.ts" + }, + { + "command": "workbench.action.navigateUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\navigationActions.ts" + }, + { + "command": "workbench.action.navigateDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\navigationActions.ts" + }, + { + "command": "workbench.action.focusNextPart", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\navigationActions.ts" + }, + { + "command": "workbench.action.focusPreviousPart", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\navigationActions.ts" + }, + { + "command": "workbench.action.closeQuickOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.acceptSelectedQuickOpenItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.alternativeAcceptSelectedQuickOpenItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.focusQuickOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.quickPickManyToggle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.quickInputBack", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.quickOpen", + "title": "reopenWith', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileActions.contribution.ts" + }, + { + "command": "workbench.action.quickOpenWithModes", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\quickAccessActions.ts" + }, + { + "command": "workbench.action.quickOpenRecent", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.toggleFullScreen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.showAboutDialog", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.newWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.blur", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.toggleConfirmBeforeClose", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.files.openFileFolderInNewWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "_files.pickFolderAndOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "workbench.action.files.openFolderInNewWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "workbench.action.files.openFileInNewWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "workbench.action.openWorkspaceInNewWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "vscode.openFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "vscode.newWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "vscode.removeFromRecentlyOpened", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\actions\\workspaceCommands.ts" + }, + { + "command": "additionalComposites.action", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\compositeBarActions.ts" + }, + { + "command": "hideAccounts", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarActions.ts" + }, + { + "command": "workbench.action.previousSideBarView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarActions.ts" + }, + { + "command": "workbench.action.nextSideBarView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarActions.ts" + }, + { + "command": "workbench.action.focusActivityBar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarActions.ts" + }, + { + "command": "toggleMenuVisibility", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarPart.ts" + }, + { + "command": "hideCompactMenu", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarPart.ts" + }, + { + "command": "toggleAccountsVisibility", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarPart.ts" + }, + { + "command": "resetLocationAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\panel\\panelPart.ts" + }, + { + "command": "workbench.actions.manage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarPart.ts" + }, + { + "command": "workbench.actions.accounts", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\activitybar\\activitybarPart.ts" + }, + { + "command": "workbench.banner.focusBanner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\banner\\bannerPart.ts" + }, + { + "command": "workbench.banner.focusNextAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\banner\\bannerPart.ts" + }, + { + "command": "workbench.banner.focusPreviousAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\banner\\bannerPart.ts" + }, + { + "command": "showEditorScreenReaderNotification", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\accessibilityStatus.ts" + }, + { + "command": "breadcrumbs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbs.ts" + }, + { + "command": "breadcrumbs.toggle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.focusAndSelect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.toggleToOn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.focusNext", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.focusPrevious", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.focusNextWithPicker", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.focusPreviousWithPicker", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.selectFocused", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.revealFocused", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.selectEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "breadcrumbs.revealFocusedFromTreeAside", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\breadcrumbsControl.ts" + }, + { + "command": "workbench.action.navigateToLastEditLocation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.nextEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.previousEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.openNextRecentlyUsedEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.openPreviousRecentlyUsedEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.nextEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.previousEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.openNextRecentlyUsedEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.openPreviousRecentlyUsedEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusFirstEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusSecondEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editor.contribution.ts" + }, + { + "command": "workbench.action.focusThirdEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editor.contribution.ts" + }, + { + "command": "workbench.action.focusFourthEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editor.contribution.ts" + }, + { + "command": "workbench.action.focusFifthEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editor.contribution.ts" + }, + { + "command": "workbench.action.focusNextGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusPreviousGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusLeftGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusRightGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusAboveGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusBelowGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorOrthogonal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.joinTwoGroups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.joinAllGroups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateEditorGroups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusActiveEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.focusLastEditorGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.revertAndCloseActiveEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.closeEditorsToTheLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.closeAllGroups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.closeEditorsInOtherGroups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.closeEditorInAllGroups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveActiveEditorGroupLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveActiveEditorGroupRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveActiveEditorGroupUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveActiveEditorGroupDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.duplicateActiveEditorGroupLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.duplicateActiveEditorGroupRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.duplicateActiveEditorGroupUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.duplicateActiveEditorGroupDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.minimizeOtherEditors", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.evenEditorWidths", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.toggleEditorWidths", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.maximizeEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.firstEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.lastEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateLast", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateForwardInEditLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateBackInEditLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigatePreviousInEditLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateForwardInNavigationLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateBackInNavigationLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigatePreviousInNavigationLocations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.navigateToLastNavigationLocation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.quickOpenPreviousRecentlyUsedEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.quickOpenLeastRecentlyUsedEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.quickOpenPreviousRecentlyUsedEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.quickOpenLeastRecentlyUsedEditorInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.clearEditorHistory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorLeftInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorRightInGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToPreviousGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToNextGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToAboveGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToBelowGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToLeftGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToRightGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToFirstGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.moveEditorToLastGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToPreviousGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToNextGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToAboveGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToBelowGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToLeftGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToRightGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToFirstGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.splitEditorToLastGroup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.newGroupLeft", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.newGroupRight", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.newGroupAbove", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.newGroupBelow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.toggleEditorType", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "workbench.action.reopenTextEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorActions.ts" + }, + { + "command": "vscode.setEditorLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorCommands.ts" + }, + { + "command": "vscode.getEditorLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorCommands.ts" + }, + { + "command": "vscode.open", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorCommands.ts" + }, + { + "command": "vscode.diff", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorCommands.ts" + }, + { + "command": "workbench.input.interactive", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorConfiguration.ts" + }, + { + "command": "mainThreadWebview-markdown.preview", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorConfiguration.ts" + }, + { + "command": "workbench.action.showCommands", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.files.openFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.files.openFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.files.openFileFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.openRecent", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.files.newUntitledFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeViews\\common\\newFile.contribution.ts" + }, + { + "command": "workbench.action.findInFiles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.terminal.toggleTerminal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.debug.start", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "workbench.action.openSettings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorGroupWatermark.ts" + }, + { + "command": "changeEditorIndentation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorStatus.ts" + }, + { + "command": "workbench.action.editor.changeEOL", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorStatus.ts" + }, + { + "command": "workbench.action.editor.changeEncoding", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\editor\\editorStatus.ts" + }, + { + "command": "workbench.action.focusPanel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\panel\\panelActions.ts" + }, + { + "command": "workbench.action.toggleMaximizedPanel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\panel\\panelActions.ts" + }, + { + "command": "workbench.action.closePanel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\panel\\panelActions.ts" + }, + { + "command": "workbench.action.closeAuxiliaryBar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\panel\\panelActions.ts" + }, + { + "command": "workbench.action.focusSideBar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\sidebar\\sidebarActions.ts" + }, + { + "command": "workbench.statusBar.focusPrevious", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\statusbar\\statusbarActions.ts" + }, + { + "command": "workbench.statusBar.focusNext", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\statusbar\\statusbarActions.ts" + }, + { + "command": "workbench.statusBar.focusFirst", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\statusbar\\statusbarActions.ts" + }, + { + "command": "workbench.statusBar.focusLast", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\statusbar\\statusbarActions.ts" + }, + { + "command": "workbench.statusBar.clearFocus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\statusbar\\statusbarActions.ts" + }, + { + "command": "workbench.action.focusStatusBar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\statusbar\\statusbarActions.ts" + }, + { + "command": "views.moveViewUp", + "title": "views', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\views\\viewPaneContainer.ts" + }, + { + "command": "views.moveViewLeft", + "title": "viewMoveUp', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\views\\viewPaneContainer.ts" + }, + { + "command": "views.moveViewDown", + "title": "viewMoveLeft', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\views\\viewPaneContainer.ts" + }, + { + "command": "views.moveViewRight", + "title": "viewMoveDown', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\views\\viewPaneContainer.ts" + }, + { + "command": "vscode.moveViews", + "title": "viewMoveRight', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\browser\\parts\\views\\viewPaneContainer.ts" + }, + { + "command": "default", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\editor\\test\\browser\\editorResolverService.test.ts" + }, + { + "command": "workbench.action.openLargeFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\common\\editor.ts" + }, + { + "command": "workbench.action.configureEditorLargeFileConfirmation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\common\\editor.ts" + }, + { + "command": "files", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\bulkEditService.ts" + }, + { + "command": "refactorPreview.apply", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\preview\\bulkEdit.contribution.ts" + }, + { + "command": "refactorPreview.discard", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\preview\\bulkEdit.contribution.ts" + }, + { + "command": "refactorPreview.toggleCheckedState", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\preview\\bulkEdit.contribution.ts" + }, + { + "command": "refactorPreview.groupByFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\preview\\bulkEdit.contribution.ts" + }, + { + "command": "refactorPreview.groupByType", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\preview\\bulkEdit.contribution.ts" + }, + { + "command": "refactorPreview.toggleGrouping", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\bulkEdit\\browser\\preview\\bulkEdit.contribution.ts" + }, + { + "command": "editor.showCallHierarchy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\callHierarchy\\browser\\callHierarchy.contribution.ts" + }, + { + "command": "editor.showIncomingCalls", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\callHierarchy\\browser\\callHierarchy.contribution.ts" + }, + { + "command": "editor.showOutgoingCalls", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\callHierarchy\\browser\\callHierarchy.contribution.ts" + }, + { + "command": "editor.refocusCallHierarchy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\callHierarchy\\browser\\callHierarchy.contribution.ts" + }, + { + "command": "editor.closeCallHierarchy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\callHierarchy\\browser\\callHierarchy.contribution.ts" + }, + { + "command": "workbench.action.inspectKeyMappings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\inspectKeybindings.ts" + }, + { + "command": "workbench.action.inspectKeyMappingsJSON", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\inspectKeybindings.ts" + }, + { + "command": "editor.contrib.largeFileOptimizationsWarner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\largeFileOptimizations.ts" + }, + { + "command": "editor.action.toggleScreenReaderAccessibilityMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\accessibility\\accessibility.ts" + }, + { + "command": "editor.action.inspectTMScopes", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\browser\\inspectEditorTokens\\inspectEditorTokens.ts" + }, + { + "command": "execCut", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\electron-sandbox\\inputClipboardActions.ts" + }, + { + "command": "execCopy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\electron-sandbox\\inputClipboardActions.ts" + }, + { + "command": "execPaste", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\electron-sandbox\\inputClipboardActions.ts" + }, + { + "command": "editor.action.selectionClipboardPaste", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\electron-sandbox\\selectionClipboard.ts" + }, + { + "command": "editor.action.startDebugTextMate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\codeEditor\\electron-sandbox\\startDebugTextMate.ts" + }, + { + "command": "runCommands", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\commands\\common\\commands.contribution.ts" + }, + { + "command": "comments", + "title": "commentsConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\test\\browser\\commentsView.test.ts" + }, + { + "command": "editor.action.nextCommentThreadAction", + "title": "comments.toggleCommenting', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsEditorContribution.ts" + }, + { + "command": "editor.action.previousCommentThreadAction", + "title": "comments.addCommand', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsEditorContribution.ts" + }, + { + "command": "workbench.action.submitComment", + "title": "comments.collapseAll', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsEditorContribution.ts" + }, + { + "command": "workbench.action.hideComment", + "title": "comments.expandAll', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsEditorContribution.ts" + }, + { + "command": "comments.collapse", + "title": "expandAll', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsView.ts" + }, + { + "command": "comments.expand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsView.ts" + }, + { + "command": "commentsFocusViewFromFilter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsViewActions.ts" + }, + { + "command": "commentsClearFilterText", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsViewActions.ts" + }, + { + "command": "commentsFocusFilter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\comments\\browser\\commentsViewActions.ts" + }, + { + "command": "workbench.debug.viewlet.action.addFunctionBreakpointAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "workbench.debug.viewlet.action.toggleBreakpointsActivatedAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "workbench.debug.viewlet.action.removeBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "workbench.debug.viewlet.action.removeAllBreakpoints", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "workbench.debug.viewlet.action.enableAllBreakpoints", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "workbench.debug.viewlet.action.disableAllBreakpoints", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "workbench.debug.viewlet.action.reapplyBreakpointsAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "debug.editBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "debug.editFunctionBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "debug.editFunctionBreakpointHitCount", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointsView.ts" + }, + { + "command": "breakpointWidget.action.acceptInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointWidget.ts" + }, + { + "command": "closeBreakpointWidget", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\breakpointWidget.ts" + }, + { + "command": "callStack.collapse", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\callStackView.ts" + }, + { + "command": "debug.installAdditionalDebuggers", + "title": "debugConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "workbench.debug.action.toggleRepl", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debug.contribution.ts" + }, + { + "command": "workbench.debug.action.focusVariablesView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debug.contribution.ts" + }, + { + "command": "workbench.debug.action.focusWatchView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debug.contribution.ts" + }, + { + "command": "workbench.debug.action.focusCallStackView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debug.contribution.ts" + }, + { + "command": "workbench.debug.action.focusBreakpointsView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debug.contribution.ts" + }, + { + "command": "debug", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debug.contribution.ts" + }, + { + "command": "debug.toggleBreakpoint", + "title": "addInlineBreakpoint', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "debug.enableOrDisableBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "debug.setVariable", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "debug.removeBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "debug.openBreakpointToSide", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "debug.openView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugCommands.ts" + }, + { + "command": "editor.debug.action.toggleBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.conditionalBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.addLogPoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.editBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.showDebugHover", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.goToNextBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.goToPreviousBreakpoint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "editor.debug.action.closeExceptionWidget", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugEditorActions.ts" + }, + { + "command": "debug.toggleReplIgnoreFocus", + "title": "debugPanel', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\debugViewlet.ts" + }, + { + "command": "repl.action.acceptInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "repl.action.filter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "repl.action.copyAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "workbench.debug.panel.action.clearReplAction", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "debug.collapseRepl", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "debug.replPaste", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "workbench.debug.action.copyAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "debug.replCopy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\repl.ts" + }, + { + "command": "variables.collapse", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\variablesView.ts" + }, + { + "command": "watch.collapse", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\browser\\watchExpressionsView.ts" + }, + { + "command": "adapter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\test\\node\\debugger.test.ts" + }, + { + "command": "extension1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\test\\node\\debugger.test.ts" + }, + { + "command": "extension2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\debug\\test\\node\\debugger.test.ts" + }, + { + "command": "_workbench.editSessions.actions.continueEditSession", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "_workbench.editSessions.actions.continueEditSession.openLocalFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "workbench.editSessions.actions.showOutputChannel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "workbench.action.continueOn.extensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "autoStoreWorkingChanges", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "workbench.editSessions.actions.showEditSessions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "workbench.editSessions.actions.resumeLatest", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "workbench.editSessions.actions.storeCurrent", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessions.contribution.ts" + }, + { + "command": "workbench.editSessions.actions.signIn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessionsStorageService.ts" + }, + { + "command": "workbench.editSessions.actions.resetAuth", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessionsStorageService.ts" + }, + { + "command": "workbench.editSessions.actions.resume", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessionsViews.ts" + }, + { + "command": "workbench.editSessions.actions.store", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessionsViews.ts" + }, + { + "command": "workbench.editSessions.actions.delete", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessionsViews.ts" + }, + { + "command": "workbench.editSessions.actions.deleteAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\editSessions\\browser\\editSessionsViews.ts" + }, + { + "command": "editor.emmet.action.expandAbbreviation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\emmet\\browser\\actions\\expandAbbreviation.ts" + }, + { + "command": "nunjucks", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\emmet\\test\\browser\\emmetAction.test.ts" + }, + { + "command": "laravel-blade", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\emmet\\test\\browser\\emmetAction.test.ts" + }, + { + "command": "experiment1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "greet", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentalPrompts.test.ts" + }, + { + "command": "experiment2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "experiment3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "experiment4", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "experiment5", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "simple-experiment", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "custom-experiment", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "custom-experiment-no-properties", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "prompt-with-no-commands", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "prompt-with-commands", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\experiments\\test\\electron-sandbox\\experimentService.test.ts" + }, + { + "command": "workbench.action.showRuntimeExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\abstractRuntimeExtensionsEditor.ts" + }, + { + "command": "editor.action.extensioneditor.showfind", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionEditor.ts" + }, + { + "command": "editor.action.extensioneditor.findNext", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionEditor.ts" + }, + { + "command": "editor.action.extensioneditor.findPrevious", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionEditor.ts" + }, + { + "command": "extensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "workbench.extensions.installExtension", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.uninstallExtension", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.search", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.installExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showRecommendedKeymapExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showLanguageExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.checkForUpdates", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "configureExtensionsAutoUpdate.all", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "configureExtensionsAutoUpdate.enabled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "configureExtensionsAutoUpdate.none", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.updateAllExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.disableAutoUpdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.enableAutoUpdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.enableAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.enableAllWorkspace", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.disableAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.disableAllWorkspace", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.installExtensionFromLocation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showPopularExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showRecommendedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.recentlyPublishedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.listBuiltInExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.extensionUpdates", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showEnabledExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showDisabledExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "installs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "rating", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "name", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "publishedDate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "updateDate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.clearExtensionsSearchResults", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.refreshExtension", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.installWorkspaceRecommendedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showPreReleaseVersion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.showReleasedVersion", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.copyExtension", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.copyExtensionId", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.configure", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.configureKeybindings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.ignoreRecommendation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.undoIgnoredRecommendation", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.addExtensionToWorkspaceRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.removeExtensionFromWorkspaceRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.addToWorkspaceRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.addToWorkspaceFolderRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.addToWorkspaceIgnoredRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.action.addToWorkspaceFolderIgnoredRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensions.contribution.ts" + }, + { + "command": "workbench.extensions.installMissingDependencies", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsDependencyChecker.ts" + }, + { + "command": "workbench.extensions.installLocalExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.extensions.actions.installLocalExtensionsInRemote", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.popular", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "extensions.recommendedList", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.enabled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.disabled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.marketplace", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.searchInstalled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.searchRecentlyUpdated", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.searchEnabled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.searchDisabled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.searchBuiltin", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.searchWorkspaceUnsupported", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.otherRecommendations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.builtinFeatureExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.builtinThemeExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.builtinProgrammingLanguageExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.untrustedUnsupportedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.untrustedPartiallySupportedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.virtualUnsupportedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.virtualPartiallySupportedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.views.extensions.deprecatedExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\browser\\extensionsViewlet.ts" + }, + { + "command": "workbench.extensions.action.openExtensionsFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\electron-sandbox\\extensionsActions.ts" + }, + { + "command": "_workbench.extensions.action.cleanUpExtensionsFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\electron-sandbox\\extensionsActions.ts" + }, + { + "command": "vscode-local", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\test\\electron-sandbox\\extensionsWorkbenchService.test.ts" + }, + { + "command": "vscode-remote", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\test\\electron-sandbox\\extensionsWorkbenchService.test.ts" + }, + { + "command": "vscode-web", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\test\\electron-sandbox\\extensionsActions.test.ts" + }, + { + "command": "', title: ", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\test\\electron-sandbox\\extensionsViews.test.ts" + }, + { + "command": "someId", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\extensions\\test\\electron-sandbox\\extensionsViews.test.ts" + }, + { + "command": "local", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\test\\browser\\extensionEnablementService.test.ts" + }, + { + "command": "externalTerminal", + "title": "terminalConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\externalTerminal\\electron-sandbox\\externalTerminal.contribution.ts" + }, + { + "command": "disabled-id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\externalUriOpener\\test\\common\\externalUriOpenerService.test.ts" + }, + { + "command": "enabled-id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\externalUriOpener\\test\\common\\externalUriOpenerService.test.ts" + }, + { + "command": "other-id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\externalUriOpener\\test\\common\\externalUriOpenerService.test.ts" + }, + { + "command": "preferred-id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\externalUriOpener\\test\\common\\externalUriOpenerService.test.ts" + }, + { + "command": "workbench.files.action.focusOpenEditorsView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\explorerViewlet.ts" + }, + { + "command": "workbench.explorer.fileView.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\explorerViewlet.ts" + }, + { + "command": "filesExplorer.cancelCut", + "title": "copyPath', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileActions.contribution.ts" + }, + { + "command": "filesExplorer.openFilePreserveFocus", + "title": "copyRelativePath', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileActions.contribution.ts" + }, + { + "command": "explorer.openAndPassFocus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileCommands.ts" + }, + { + "command": "workbench.action.files.copyPathOfActiveFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileCommands.ts" + }, + { + "command": "workbench.action.files.saveEditors", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileCommands.ts" + }, + { + "command": "workbench.action.files.revertEditors", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\fileCommands.ts" + }, + { + "command": "ignoreEnospcError", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\workspaceWatcher.ts" + }, + { + "command": "workbench.files.action.openFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\editors\\textFileEditor.ts" + }, + { + "command": "workbench.files.action.reveal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\editors\\textFileEditor.ts" + }, + { + "command": "workbench.files.action.createMissingFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\editors\\textFileEditor.ts" + }, + { + "command": "workbench.files.openFile", + "title": "createNewFile', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\openEditorsView.ts" + }, + { + "command": "workbench.files.action.createFileFromExplorer", + "title": "createNewFolder', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\explorerView.ts" + }, + { + "command": "workbench.files.action.createFolderFromExplorer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\explorerView.ts" + }, + { + "command": "workbench.files.action.refreshFilesExplorer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\explorerView.ts" + }, + { + "command": "workbench.files.action.collapseExplorerFolders", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\explorerView.ts" + }, + { + "command": "workbench.action.toggleEditorGroupLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\openEditorsView.ts" + }, + { + "command": "workbench.action.files.saveAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\openEditorsView.ts" + }, + { + "command": "openEditors.closeAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\openEditorsView.ts" + }, + { + "command": "openEditors.newUntitledFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\browser\\views\\openEditorsView.ts" + }, + { + "command": "workbench.action.relaunchWithIncreasedMemoryLimit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\electron-sandbox\\textFileEditor.ts" + }, + { + "command": "workbench.action.configureMemoryLimit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\files\\electron-sandbox\\textFileEditor.ts" + }, + { + "command": "formatter.conflict", + "title": "do.config.command', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\format\\browser\\formatActionsMultiple.ts" + }, + { + "command": "editor.action.formatDocument.multiple", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\format\\browser\\formatActionsMultiple.ts" + }, + { + "command": "editor.action.formatSelection.multiple", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\format\\browser\\formatActionsMultiple.ts" + }, + { + "command": "editor.action.formatDocument.none", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\format\\browser\\formatActionsNone.ts" + }, + { + "command": "editor.action.formatChanges", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\format\\browser\\formatModified.ts" + }, + { + "command": "inlayHints.startReadingLineWithHint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\inlayHints\\browser\\inlayHintsAccessibilty.ts" + }, + { + "command": "inlayHints.stopReadingLineWithHint", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\inlayHints\\browser\\inlayHintsAccessibilty.ts" + }, + { + "command": "vscode-interactive-input", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "_interactive.open", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.execute", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.input.clear", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.history.previous", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.history.next", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.scrollToTop", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.scrollToBottom", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.input.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactive.history.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactiveWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactive\\browser\\interactive.contribution.ts" + }, + { + "command": "interactiveEditor.start", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.accept", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.stop", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.cancel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.arrowOutUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.arrowOutDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.previousFromHistory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.nextFromHistory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.undoToClipboard", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.undoToFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.undo", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.feedbackHelpful", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.feedbackunhelpful", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.toggleInlineDiff", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveEditor.copyRecordings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveEditor\\browser\\interactiveEditorActions.ts" + }, + { + "command": "interactiveSessionSidebar", + "title": "interactiveSessionConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\interactiveSession.contribution.ts" + }, + { + "command": "', program: ", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\interactiveSessionContributionServiceImpl.ts" + }, + { + "command": "interactiveSession.action.acceptInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionActions.ts" + }, + { + "command": "workbench.action.interactiveSessionEditor.clear", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionActions.ts" + }, + { + "command": "workbench.action.interactiveSessionEditor.clearHistory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionActions.ts" + }, + { + "command": "interactiveSession.action.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionActions.ts" + }, + { + "command": "workbench.action.interactiveSession.focusInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionActions.ts" + }, + { + "command": "workbench.action.interactiveSession.copyCodeBlock", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionCodeblockActions.ts" + }, + { + "command": "workbench.action.interactiveSession.insertCodeBlock", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionCodeblockActions.ts" + }, + { + "command": "workbench.action.interactiveSession.copyAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionCopyActions.ts" + }, + { + "command": "workbench.action.interactiveSession.copyItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionCopyActions.ts" + }, + { + "command": "workbench.action.interactiveSession.submit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionExecuteActions.ts" + }, + { + "command": "workbench.action.interactiveSession.cancel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionExecuteActions.ts" + }, + { + "command": "workbench.action.interactiveSession.voteUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionTitleActions.ts" + }, + { + "command": "workbench.action.interactiveSession.voteDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\interactiveSession\\browser\\actions\\interactiveSessionTitleActions.ts" + }, + { + "command": "workbench.action.toggleKeybindingsLog", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\keybindings\\browser\\keybindings.contribution.ts" + }, + { + "command": "status.editor.mode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\languageStatus\\browser\\languageStatus.contribution.ts" + }, + { + "command": "editor.inlayHints.Reset", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\languageStatus\\browser\\languageStatus.contribution.ts" + }, + { + "command": "workbench.action.localHistory.compareWithFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.compareWithPrevious", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.selectForCompare", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.compareWithSelected", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.open", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.restoreViaEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.restore", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.restoreViaPicker", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.rename", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.delete", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.deleteAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.create", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\browser\\localHistoryCommands.ts" + }, + { + "command": "workbench.action.localHistory.revealInOS", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localHistory\\electron-sandbox\\localHistoryCommands.ts" + }, + { + "command": "', path: ", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localization\\common\\localization.contribution.ts" + }, + { + "command": "langugage.update.donotask", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localization\\electron-sandbox\\localization.contribution.ts" + }, + { + "command": "en", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\localization\\electron-sandbox\\localization.contribution.ts" + }, + { + "command": "workbench.action.setDefaultLogLevel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\logs\\common\\logs.contribution.ts" + }, + { + "command": "workbench.actions.view.problems", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\markers\\browser\\markers.contribution.ts" + }, + { + "command": "workbench.action.problems.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\markers\\browser\\markers.contribution.ts" + }, + { + "command": "_open.mergeEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.mixedLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.columnLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.showNonConflictingChanges", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.showBase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.showBaseTop", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.showBaseCenter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.openResult", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.goToNextUnhandledConflict", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.goToPreviousUnhandledConflict", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.toggleActiveConflictInput1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.toggleActiveConflictInput2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "mergeEditor.compareInput1WithBase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "mergeEditor.compareInput2WithBase", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.openBaseEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.acceptAllInput1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.acceptAllInput2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "mergeEditor.resetResultToBaseAndAutoMerge", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "mergeEditor.resetCloseWithConflictsChoice", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "mergeEditor.acceptMerge", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\commands.ts" + }, + { + "command": "merge.dev.copyContentsJson", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\devCommands.ts" + }, + { + "command": "merge.dev.saveContentsToFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\devCommands.ts" + }, + { + "command": "merge.dev.loadContentsFromFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\commands\\devCommands.ts" + }, + { + "command": "nextConflict", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\browser\\view\\editors\\resultCodeEditorView.ts" + }, + { + "command": "merge.dev.openContentsJson", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\electron-sandbox\\devCommands.ts" + }, + { + "command": "merge.dev.openSelectionInTemporaryMergeEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\mergeEditor\\electron-sandbox\\devCommands.ts" + }, + { + "command": "notebook", + "title": "notebookConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\view\\cellParts\\cellEditorOptions.ts" + }, + { + "command": "workbench.notebook.action.openInTextEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\notebookEditor.ts" + }, + { + "command": "', displayName: ", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\notebookExtensionPoint.ts" + }, + { + "command": "workbench.action.toggleNotebookClipboardLog", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\clipboard\\notebookClipboard.ts" + }, + { + "command": "statusBarItem.prominentBackground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\editorStatusBar\\editorStatusBar.ts" + }, + { + "command": "notebook.hideFind", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\find\\notebookFind.ts" + }, + { + "command": "notebook.find", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\find\\notebookFind.ts" + }, + { + "command": "findInMarkdownInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\find\\notebookFindReplaceWidget.ts" + }, + { + "command": "findInCodeInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\find\\notebookFindReplaceWidget.ts" + }, + { + "command": "findInCodeOutput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\find\\notebookFindReplaceWidget.ts" + }, + { + "command": "notebook.format", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\format\\formatting.ts" + }, + { + "command": "notebook.formatCell", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\format\\formatting.ts" + }, + { + "command": "workbench.notebook.layout.gettingStarted", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\gettingStarted\\notebookGettingStarted.ts" + }, + { + "command": "notebook.setProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\profile\\notebookProfile.ts" + }, + { + "command": "notebook.toggleLayoutTroubleshoot", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\troubleshoot\\layout.ts" + }, + { + "command": "notebook.inspectLayout", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\troubleshoot\\layout.ts" + }, + { + "command": "notebook.clearNotebookEdtitorTypeCache", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\contrib\\troubleshoot\\layout.ts" + }, + { + "command": "notebook.fold", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\foldingController.ts" + }, + { + "command": "notebook.unfold", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\foldingController.ts" + }, + { + "command": "workbench.notebook.layout.select", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "workbench.notebook.layout.configure", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "workbench.notebook.layout.configure.editorTitle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "notebook.toggleLineNumbersFromEditorTitle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "notebook.toggleCellToolbarPositionFromEditorTitle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "breadcrumbs.toggleFromEditorTitle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "notebook.saveMimeTypeOrder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "workbench.notebook.layout.webview.reset", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\controller\\layoutActions.ts" + }, + { + "command": "notebook.diff.switchToText", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.cell.revertMetadata", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.cell.switchOutputRenderingStyle", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.cell.switchOutputRenderingStyleToText", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.cell.revertOutputs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.cell.revertInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.action.previous", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.diff.action.next", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\diff\\notebookDiffActions.ts" + }, + { + "command": "notebook.clearNotebookKernelsMRUCache", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\services\\notebookKernelHistoryServiceImpl.ts" + }, + { + "command": "notebook.toggleLineNumbers", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\view\\cellParts\\cellEditorOptions.ts" + }, + { + "command": "notebook.cell.toggleLineNumbers", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\view\\cellParts\\cellEditorOptions.ts" + }, + { + "command": "installRenderers", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\view\\cellParts\\cellOutput.ts" + }, + { + "command": "install", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\viewParts\\notebookKernelQuickPickStrategy.ts" + }, + { + "command": "installSuggested", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\viewParts\\notebookKernelQuickPickStrategy.ts" + }, + { + "command": "selectAnother", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\browser\\viewParts\\notebookKernelQuickPickStrategy.ts" + }, + { + "command": "bar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\notebook\\test\\browser\\notebookServiceImpl.test.ts" + }, + { + "command": "outline.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outline.contribution.ts" + }, + { + "command": "outline.collapse", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "outline.expand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "outline.followCursor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "outline.filterOnType", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "outline.sortByPosition", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "outline.sortByName", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "outline.sortByKind", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\outline\\browser\\outlineActions.ts" + }, + { + "command": "workbench.action.output.toggleOutput", + "title": "output', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\output\\browser\\output.contribution.ts" + }, + { + "command": "workbench.action.showOutputChannels", + "title": "switchBetweenOutputs.label', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\output\\browser\\output.contribution.ts" + }, + { + "command": "workbench.action.showLogs", + "title": "switchToOutput.label', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\output\\browser\\output.contribution.ts" + }, + { + "command": "workbench.action.openLogFile", + "title": "output', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\output\\browser\\output.contribution.ts" + }, + { + "command": "output", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\output\\browser\\output.contribution.ts" + }, + { + "command": "perfview.show", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\performance\\browser\\performance.contribution.ts" + }, + { + "command": "perf.insta.printAsyncCycles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\performance\\browser\\performance.contribution.ts" + }, + { + "command": "perf.insta.printTraces", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\performance\\browser\\performance.contribution.ts" + }, + { + "command": "perf.event.profiling", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\performance\\browser\\performance.contribution.ts" + }, + { + "command": "editKeybinding", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\keybindingsEditor.ts" + }, + { + "command": "addKeybinding", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\keybindingsEditor.ts" + }, + { + "command": "workbench.action.openSettings2", + "title": "settings', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openSettingsJson", + "title": "settings.focusFile', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openApplicationSettingsJson", + "title": "settings.focusFile', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openGlobalSettings", + "title": "settings.focusSettingsList', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openRawDefaultSettings", + "title": "settings.focusSettingControl', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "_workbench.openUserSettingsEditor", + "title": "clear', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openWorkspaceSettings", + "title": "clearHistory', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openAccessibilitySettings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openWorkspaceSettingsFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openFolderSettings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openFolderSettingsFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "_workbench.action.openFolderSettings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openRemoteSettings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openRemoteSettingsFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openGlobalKeybindings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openDefaultKeybindingsFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "workbench.action.openGlobalKeybindingsFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "editor.action.defineKeybinding", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferences.contribution.ts" + }, + { + "command": "_getAllSettings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferencesActions.ts" + }, + { + "command": "truthyValue", + "title": "manage workspace trust', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferencesRenderers.ts" + }, + { + "command": "falsyValue", + "title": "manage workspace trust', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferencesRenderers.ts" + }, + { + "command": "setDefaultValue", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferencesRenderers.ts" + }, + { + "command": "workbench.trust.manage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferencesRenderers.ts" + }, + { + "command": "folderSettingsTarget", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\preferencesWidgets.ts" + }, + { + "command": "workspaceTrust", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "commonlyUsed", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/cursor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/find", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/font", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/format", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/diffEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/minimap", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/suggestions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "editor/files", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "workbench/appearance", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "workbench/breadcrumbs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "workbench/editor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "workbench/settings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "workbench/zenmode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "workbench/screencastmode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "window", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\themes\\common\\themeConfiguration.ts" + }, + { + "command": "window/newWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/explorer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/search", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/debug", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/testing", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/scm", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/extensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/terminal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/task", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/problems", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/output", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/comments", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/remote", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/timeline", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/notebook", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/audioCues", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/mergeEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "features/interactiveSession", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/http", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/keyboard", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/update", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/telemetry", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/settingsSync", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/experimental", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "application/other", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "security", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\workspace\\browser\\workspace.contribution.ts" + }, + { + "command": "security/workspace", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsLayout.ts" + }, + { + "command": "searchResultModel", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsTreeModels.ts" + }, + { + "command": "workbench.action.editListItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsWidgets.ts" + }, + { + "command": "workbench.action.removeListItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsWidgets.ts" + }, + { + "command": "workbench.action.resetListItem", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\preferences\\browser\\settingsWidgets.ts" + }, + { + "command": "workbench.action.clearCommandHistory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\quickaccess\\browser\\commandsQuickAccess.ts" + }, + { + "command": "workbench.action.gotoLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\quickaccess\\browser\\quickAccess.contribution.ts" + }, + { + "command": "remote.tunnelsView.autoForwardNeverShow", + "title": "ports', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\remote\\browser\\remoteExplorer.ts" + }, + { + "command": "workbench.action.triggerReconnect", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\remote\\common\\remote.contribution.ts" + }, + { + "command": "workbench.action.pauseSocketWriting", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\remote\\common\\remote.contribution.ts" + }, + { + "command": "remote", + "title": "remote', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\electron-sandbox\\extensionManagementServerService.ts" + }, + { + "command": "editor.action.dirtydiff.previous", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\dirtydiffDecorator.ts" + }, + { + "command": "editor.action.dirtydiff.next", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\dirtydiffDecorator.ts" + }, + { + "command": "workbench.action.editor.previousChange", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\dirtydiffDecorator.ts" + }, + { + "command": "workbench.action.editor.nextChange", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\dirtydiffDecorator.ts" + }, + { + "command": "closeDirtyDiff", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\dirtydiffDecorator.ts" + }, + { + "command": "scminput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "scm", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "scm.acceptInput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "scm.viewNextCommit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "scm.viewPreviousCommit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "scm.forceViewNextCommit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "scm.forceViewPreviousCommit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "scm.openInTerminal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scm.contribution.ts" + }, + { + "command": "workbench.scm.action.setListViewMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scmViewPane.ts" + }, + { + "command": "workbench.scm.action.setTreeViewMode", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\scm\\browser\\scmViewPane.ts" + }, + { + "command": "search", + "title": "searchConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\search\\browser\\search.contribution.ts" + }, + { + "command": "search.searchEditor.action.deleteFileResults", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\searchEditor\\browser\\searchEditor.contribution.ts" + }, + { + "command": "search.action.openNewEditorFromView", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\searchEditor\\browser\\searchEditor.contribution.ts" + }, + { + "command": "insertSnippet", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\snippets\\browser\\tabCompletion.ts" + }, + { + "command": "workbench.action.openSnippets", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\snippets\\browser\\commands\\configureSnippets.ts" + }, + { + "command": "editor.action.insertSnippet", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\snippets\\browser\\commands\\insertSnippet.ts" + }, + { + "command": "editor.action.surroundWithSnippet", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\snippets\\browser\\commands\\surroundWithSnippet.ts" + }, + { + "command": "fooLang", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\snippets\\test\\browser\\snippetsService.test.ts" + }, + { + "command": "workbench.action.tasks.runTask", + "title": "RebuildAction.label', 'Run Rebuild Task'), category: tasksCategory });\n// MenuRegistry.addCommand( { id: 'workbench.action.tasks.clean', title: nls.localize('CleanAction.label', 'Run Clean Task'), category: tasksCategory });\n\nKeybindingsRegistry.registerKeybindingRule({\n\tid: 'workbench.action.tasks.build',\n\tweight: KeybindingWeight.WorkbenchContrib,\n\twhen: TaskCommandsRegistered,\n\tprimary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyB\n});\n\n// Tasks Output channel. Register it before using it in Task Service.\nconst outputChannelRegistry = Registry.as(OutputExt.OutputChannels);\noutputChannelRegistry.registerChannel({ id: AbstractTaskService.OutputChannelId, label: AbstractTaskService.OutputChannelLabel, log: false });\n\n\n// Register Quick Access\nconst quickAccessRegistry = (Registry.as(QuickAccessExtensions.Quickaccess));\nconst tasksPickerContextKey = 'inTasksPicker';\n\nquickAccessRegistry.registerQuickAccessProvider({\n\tctor: TasksQuickAccessProvider,\n\tprefix: TasksQuickAccessProvider.PREFIX,\n\tcontextKey: tasksPickerContextKey,\n\tplaceholder: nls.localize('tasksQuickAccessPlaceholder', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\terminalMenus.ts" + }, + { + "command": "terminateAll", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\abstractTaskService.ts" + }, + { + "command": "workbench.action.tasks.build", + "title": "tasksConfigurationTitle', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.showTasks", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.restartTask", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.terminate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.configureTaskRunner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\terminalMenus.ts" + }, + { + "command": "workbench.action.tasks.configureDefaultBuildTask", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.openWorkspaceFileTasks", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.showLog", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.reRunTask", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.test", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.configureDefaultTestTask", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.openUserTasks", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.rebuild", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "workbench.action.tasks.clean", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "task", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\browser\\task.contribution.ts" + }, + { + "command": "clean", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\tasks.ts" + }, + { + "command": "build", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\tasks.ts" + }, + { + "command": "rebuild", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\tasks.ts" + }, + { + "command": "test", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\test\\browser\\viewContainerModel.test.ts" + }, + { + "command": "dotnetCore", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "msbuild", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "externalCommand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "maven", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "tsc.config", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "tsc.watch", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\tasks\\common\\taskTemplates.ts" + }, + { + "command": "terminalConfigHelper/launchRecommendationsIgnore", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\terminalConfigHelper.ts" + }, + { + "command": "terminal.rerunCommand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "terminal.copyCommand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "terminal.copyOutput", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "terminal.copyOutputAsHtml", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "workbench.action.terminal.runRecentCommand", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "workbench.action.terminal.goToRecentDirectory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "terminal.configureCommandDecorations", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "terminal.learnShellIntegration", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\browser\\xterm\\decorationAddon.ts" + }, + { + "command": "$1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\browser\\terminalQuickFixService.ts" + }, + { + "command": "extension.js-debug.debugTerminal", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalProfileService.integrationTest.ts" + }, + { + "command": "info1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "warning1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "info2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "warning2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "info3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "error1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "warning3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "error2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "info", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "warning", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "error", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\terminalStatusList.test.ts" + }, + { + "command": "4555", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminal\\test\\browser\\xterm\\shellIntegrationAddon.test.ts" + }, + { + "command": "Git Similar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "Git Two Dashes", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "Free Port", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "Git Push Set Upstream", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "Git Create Pr", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "Pwsh General Error", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "Unix Command Not Found", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\browser\\terminalQuickFixBuiltinActions.ts" + }, + { + "command": "Pwsh Unix Command Not Found Error", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\terminalContrib\\quickFix\\test\\browser\\quickFixAddon.test.ts" + }, + { + "command": "_revealTestInExplorer", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testing.contribution.ts" + }, + { + "command": "vscode.peekTestError", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testing.contribution.ts" + }, + { + "command": "vscode.revealTest", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testing.contribution.ts" + }, + { + "command": "vscode.runTestsById", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testing.contribution.ts" + }, + { + "command": "vscode.pickMultipleTestProfiles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingConfigurationUi.ts" + }, + { + "command": "vscode.pickTestProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingConfigurationUi.ts" + }, + { + "command": "testing.explorer.filter", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingExplorerFilter.ts" + }, + { + "command": "fuzzy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingExplorerFilter.ts" + }, + { + "command": "showExcluded", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingExplorerFilter.ts" + }, + { + "command": "removeExcluded", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingExplorerFilter.ts" + }, + { + "command": "editor.closeTestPeek", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\browser\\testingOutputPeek.ts" + }, + { + "command": "testing", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\common\\configuration.ts" + }, + { + "command": "t", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\test\\common\\testResultService.test.ts" + }, + { + "command": "some-id", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\testing\\test\\common\\testResultService.test.ts" + }, + { + "command": "', theme: FileIconThemeData.noIconTheme, label: localize(", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\themes\\browser\\themes.contribution.ts" + }, + { + "command": "workbench.action.generateColorTheme", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\themes\\browser\\themes.contribution.ts" + }, + { + "command": "timeline.focus", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\timeline\\browser\\timeline.contribution.ts" + }, + { + "command": "timeline", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\timeline\\browser\\timeline.contribution.ts" + }, + { + "command": "sync~spin", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\timeline\\browser\\timelinePane.ts" + }, + { + "command": "timeline.refresh", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\timeline\\browser\\timelinePane.ts" + }, + { + "command": "timeline.toggleFollowActiveEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\timeline\\browser\\timelinePane.ts" + }, + { + "command": "editor.showTypeHierarchy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\typeHierarchy\\browser\\typeHierarchy.contribution.ts" + }, + { + "command": "editor.showSupertypes", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\typeHierarchy\\browser\\typeHierarchy.contribution.ts" + }, + { + "command": "editor.showSubtypes", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\typeHierarchy\\browser\\typeHierarchy.contribution.ts" + }, + { + "command": "editor.refocusTypeHierarchy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\typeHierarchy\\browser\\typeHierarchy.contribution.ts" + }, + { + "command": "editor.closeTypeHierarchy", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\typeHierarchy\\browser\\typeHierarchy.contribution.ts" + }, + { + "command": "update.checkForUpdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.contribution.ts" + }, + { + "command": "update.downloadUpdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.contribution.ts" + }, + { + "command": "update.installUpdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.contribution.ts" + }, + { + "command": "update.restartToUpdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.contribution.ts" + }, + { + "command": "_update.applyupdate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.contribution.ts" + }, + { + "command": "update.check", + "title": "checkForUpdates', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "update.checking", + "title": "checkingForUpdates', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "update.downloadNow", + "title": "download update_1', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "update.downloading", + "title": "DownloadingUpdate', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "update.install", + "title": "installUpdate...', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "update.updating", + "title": "installingUpdate', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "update.restart", + "title": "restartToUpdate', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\update\\browser\\update.ts" + }, + { + "command": "workbench.action.manageTrustedDomain", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\url\\browser\\trustedDomains.ts" + }, + { + "command": "manage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\url\\browser\\trustedDomains.ts" + }, + { + "command": "trust", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\url\\browser\\trustedDomains.ts" + }, + { + "command": "workbench.action.url.openUrl", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\url\\browser\\url.contribution.ts" + }, + { + "command": "workbench.profiles.actions.createProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataProfile\\browser\\userDataProfile.ts" + }, + { + "command": "workbench.profiles.actions.deleteProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataProfile\\browser\\userDataProfile.ts" + }, + { + "command": "workbench.profiles.actions.help", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataProfile\\browser\\userDataProfile.ts" + }, + { + "command": "workbench.profiles.actions.cleanupProfiles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataProfile\\browser\\userDataProfileActions.ts" + }, + { + "command": "workbench.profiles.actions.resetWorkspaces", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataProfile\\browser\\userDataProfileActions.ts" + }, + { + "command": "workbench.userDataSync.actions.turnOff", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.syncNow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.settings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.showSyncedData", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "insiders", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "stable", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.turnOn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userData.actions.turningOn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userData.actions.cancelTurnOn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userData.actions.signin", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.manage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.help", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userDataSync.actions.acceptMerges", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.actions.syncData.reset", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\browser\\userDataSync.ts" + }, + { + "command": "workbench.userData.actions.openSyncBackupsFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\userDataSync\\electron-sandbox\\userDataSync.contribution.ts" + }, + { + "command": "workbench.action.webview.openDeveloperTools", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\webview\\electron-sandbox\\webviewCommands.ts" + }, + { + "command": "welcome.banner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeBanner\\browser\\welcomeBanner.contribution.ts" + }, + { + "command": "workbench.action.openWalkthrough", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStarted.contribution.ts" + }, + { + "command": "welcome.goBack", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStarted.contribution.ts" + }, + { + "command": "walkthroughs.selectStep", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStarted.contribution.ts" + }, + { + "command": "welcome.markStepComplete", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStarted.contribution.ts" + }, + { + "command": "welcome.markStepIncomplete", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStarted.contribution.ts" + }, + { + "command": "welcome.showAllWalkthroughs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStarted.contribution.ts" + }, + { + "command": "resetGettingStartedProgress", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\browser\\gettingStartedService.ts" + }, + { + "command": "welcome.showNewFileEntries", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeViews\\common\\newFile.contribution.ts" + }, + { + "command": "topLevelOpenMac", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelOpenFile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelOpenFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelOpenFolderWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelGitClone", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelGitOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelShowWalkthroughs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "topLevelRemoteOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "Setup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "pickColorTheme", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "commandPaletteTask", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "extensionsWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "findLanguageExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "pickAFolderTask-Mac", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "pickAFolderTask-Other", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "quickOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "SetupWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "pickColorThemeWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "settingsSyncWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "commandPaletteTaskWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "menuBarWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "extensionsWebWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "findLanguageExtensionsWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "pickAFolderTask-WebWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "quickOpenWeb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "Beginner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "playground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "settings", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "videoTutorial", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "Intermediate", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "splitview", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "debugging", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "scmClone", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "scmSetup", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "installGit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "tasks", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "shortcuts", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "notebooks", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "notebookProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeGettingStarted\\common\\gettingStartedContent.ts" + }, + { + "command": "workbench.action.showInteractivePlayground", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeWalkthrough\\browser\\walkThrough.contribution.ts" + }, + { + "command": "workbench.action.interactivePlayground.arrowUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeWalkthrough\\browser\\walkThroughActions.ts" + }, + { + "command": "workbench.action.interactivePlayground.arrowDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeWalkthrough\\browser\\walkThroughActions.ts" + }, + { + "command": "workbench.action.interactivePlayground.pageUp", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeWalkthrough\\browser\\walkThroughActions.ts" + }, + { + "command": "workbench.action.interactivePlayground.pageDown", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\welcomeWalkthrough\\browser\\walkThroughActions.ts" + }, + { + "command": "editTrustedUri", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\workspace\\browser\\workspaceTrustEditor.ts" + }, + { + "command": "pickerTrustedUri", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\workspace\\browser\\workspaceTrustEditor.ts" + }, + { + "command": "deleteTrustedUri", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\workspace\\browser\\workspaceTrustEditor.ts" + }, + { + "command": "workspaces.dontPromptToOpen", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\workspaces\\browser\\workspaces.contribution.ts" + }, + { + "command": "workbench.action.openWorkspaceFromEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\contrib\\workspaces\\browser\\workspaces.contribution.ts" + }, + { + "command": "workbench.action.quit", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "workbench.action.newWindowTab", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "workbench.action.showPreviousWindowTab", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "workbench.action.showNextWindowTab", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "workbench.action.moveWindowTabToNewWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "workbench.action.mergeAllWindowTabs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "workbench.action.toggleWindowTabsBar", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.contribution.ts" + }, + { + "command": "join.closeStorage", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\desktop.main.ts" + }, + { + "command": "appRootWarning.banner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\window.ts" + }, + { + "command": "windowseol.banner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\window.ts" + }, + { + "command": "windowseol", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\window.ts" + }, + { + "command": "macoseol.banner", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\window.ts" + }, + { + "command": "macoseol", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\window.ts" + }, + { + "command": "workbench.action.toggleDevTools", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.configureRuntimeArguments", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.reloadWindowWithExtensionsDisabled", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.openUserDataFolder", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\developerActions.ts" + }, + { + "command": "workbench.action.installCommandLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\installActions.ts" + }, + { + "command": "workbench.action.uninstallCommandLine", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\installActions.ts" + }, + { + "command": "workbench.action.zoomIn", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.zoomOut", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.zoomReset", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.switchWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\windowActions.ts" + }, + { + "command": "workbench.action.quickSwitchWindow", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\electron-sandbox\\actions\\windowActions.ts" + }, + { + "command": "noAuthenticationProviders", + "title": "loading', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\authentication\\browser\\authenticationService.ts" + }, + { + "command": "input1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\configurationResolver\\test\\electron-sandbox\\configurationResolverService.test.ts" + }, + { + "command": "input2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\configurationResolver\\test\\electron-sandbox\\configurationResolverService.test.ts" + }, + { + "command": "input3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\configurationResolver\\test\\electron-sandbox\\configurationResolverService.test.ts" + }, + { + "command": "input4", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\configurationResolver\\test\\electron-sandbox\\configurationResolverService.test.ts" + }, + { + "command": "TEST_EDITOR", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\editor\\test\\browser\\editorResolverService.test.ts" + }, + { + "command": "TEST_EDITOR_PRIMARY", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\editor\\test\\browser\\editorResolverService.test.ts" + }, + { + "command": "TEST_EDITOR_SECONDARY", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\editor\\test\\browser\\editorResolverService.test.ts" + }, + { + "command": "TEST_EDITOR_2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\editor\\test\\browser\\editorResolverService.test.ts" + }, + { + "command": "TestEditor", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\editor\\test\\browser\\editorService.test.ts" + }, + { + "command": "extension.bisect.start", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\browser\\extensionBisect.ts" + }, + { + "command": "extension.bisect.next", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\browser\\extensionBisect.ts" + }, + { + "command": "extension.bisect.stop", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\browser\\extensionBisect.ts" + }, + { + "command": "workbench.extensions.action.openInstalledWebExtensionsResource", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\browser\\webExtensionsScannerService.ts" + }, + { + "command": "web", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\common\\extensionManagementServerService.ts" + }, + { + "command": "pub.a", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\test\\browser\\extensionEnablementService.test.ts" + }, + { + "command": "pub.b", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\test\\browser\\extensionEnablementService.test.ts" + }, + { + "command": "pub.c", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensionManagement\\test\\browser\\extensionEnablementService.test.ts" + }, + { + "command": "workbench.extensions.action.manageAuthorizedExtensionURIs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensions\\browser\\extensionUrlHandler.ts" + }, + { + "command": "editor.action.measureExtHostLatency", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensions\\common\\extensionHostManager.ts" + }, + { + "command": "join.extensionDevelopment", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensions\\electron-sandbox\\localProcessExtensionHost.ts" + }, + { + "command": "workbench.action.restartExtensionHost", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\extensions\\electron-sandbox\\nativeExtensionService.ts" + }, + { + "command": "workbench.issue", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\issue\\electron-sandbox\\issueService.ts" + }, + { + "command": "', text: ", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\tr.win.ts" + }, + { + "command": "com.apple.keylayout.German", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\de.darwin.ts" + }, + { + "command": "com.apple.keylayout.Dvorak", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\dvorak.darwin.ts" + }, + { + "command": "com.apple.keylayout.USExtended", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en-ext.darwin.ts" + }, + { + "command": "com.apple.keylayout.USInternational-PC", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en-intl.darwin.ts" + }, + { + "command": "0001", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en-intl.win.ts" + }, + { + "command": "com.apple.keylayout.British", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en-uk.darwin.ts" + }, + { + "command": "com.apple.keylayout.US", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.apple.keylayout.ABC", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.sogou.inputmethod.sogou.pinyin", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.apple.inputmethod.Kotoeri.Roman", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.apple.inputmethod.Kotoeri.Japanese", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\jp.darwin.ts" + }, + { + "command": "com.apple.keylayout.Australian", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.apple.keylayout.Canadian", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.apple.keylayout.Brazilian", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\en.darwin.ts" + }, + { + "command": "com.apple.keylayout.Spanish-ISO", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\es.darwin.ts" + }, + { + "command": "com.apple.keylayout.French", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\fr.darwin.ts" + }, + { + "command": "com.apple.keylayout.Italian-Pro", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\it.darwin.ts" + }, + { + "command": "com.google.inputmethod.Japanese.Roman", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\jp-roman.darwin.ts" + }, + { + "command": "com.apple.inputmethod.Korean.2SetKorean", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\ko.darwin.ts" + }, + { + "command": "com.apple.keylayout.PolishPro", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\pl.darwin.ts" + }, + { + "command": "com.apple.keylayout.Brazilian-Pro", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\pt.darwin.ts" + }, + { + "command": "com.apple.keylayout.Russian", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\ru.darwin.ts" + }, + { + "command": "com.apple.keylayout.Swedish-Pro", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\sv.darwin.ts" + }, + { + "command": "com.apple.inputmethod.SCIM.ITABC", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\keybinding\\browser\\keyboardLayouts\\zh-hans.darwin.ts" + }, + { + "command": "${1:languageId}", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\language\\common\\languageService.ts" + }, + { + "command": "openArgv", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\localization\\electron-sandbox\\localeService.ts" + }, + { + "command": "mostCommonlyUsed", + "title": "commonlyUsed', ", + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\preferences\\common\\preferencesModels.ts" + }, + { + "command": "statusBar.entry.showTooltip", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\statusbar\\browser\\statusbar.ts" + }, + { + "command": "global", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\storage\\browser\\storageService.ts" + }, + { + "command": "workspace-storage-test", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\storage\\test\\browser\\storageService.test.ts" + }, + { + "command": "join.textFiles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\textfile\\electron-sandbox\\nativeTextFileService.ts" + }, + { + "command": "plumbus0", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\textfile\\test\\browser\\textFileService.test.ts" + }, + { + "command": "plumbus1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\textfile\\test\\browser\\textFileService.test.ts" + }, + { + "command": "plumbus2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\textfile\\test\\browser\\textFileService.test.ts" + }, + { + "command": "${2:id}", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\themes\\common\\themeExtensionPoints.ts" + }, + { + "command": "extension.open", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\extensionsResource.ts" + }, + { + "command": "userDataProfiles", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileImportExportService.ts" + }, + { + "command": "previewProfile.installExtensions", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileImportExportService.ts" + }, + { + "command": "createAndEnterProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileManagement.ts" + }, + { + "command": "createAndEnterTransientProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileManagement.ts" + }, + { + "command": "updateProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileManagement.ts" + }, + { + "command": "removeProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileManagement.ts" + }, + { + "command": "switchProfile", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\userDataProfile\\browser\\userDataProfileManagement.ts" + }, + { + "command": "_workbench.output.showViewsLog", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\common\\viewContainerModel.ts" + }, + { + "command": "view1", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\test\\browser\\viewDescriptorService.test.ts" + }, + { + "command": "view2", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\test\\browser\\viewDescriptorService.test.ts" + }, + { + "command": "view3", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\test\\browser\\viewDescriptorService.test.ts" + }, + { + "command": "view5", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\test\\browser\\viewContainerModel.test.ts" + }, + { + "command": "view4", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\views\\test\\browser\\viewDescriptorService.test.ts" + }, + { + "command": "fileWorkingCopy.overwrite", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopy.ts" + }, + { + "command": "fileWorkingCopy.revert", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopy.ts" + }, + { + "command": "fileWorkingCopy.saveElevated", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopy.ts" + }, + { + "command": "fileWorkingCopy.unlock", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopy.ts" + }, + { + "command": "fileWorkingCopy.retry", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopy.ts" + }, + { + "command": "fileWorkingCopy.saveAs", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopy.ts" + }, + { + "command": "join.fileWorkingCopyManager", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\storedFileWorkingCopyManager.ts" + }, + { + "command": "join.workingCopyHistory", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\common\\workingCopyHistoryService.ts" + }, + { + "command": "join.workingCopyBackups", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\services\\workingCopy\\electron-sandbox\\workingCopyBackupService.ts" + }, + { + "command": "resource-input-test", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\editor\\textResourceEditorInput.test.ts" + }, + { + "command": "1-right", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "not-existing", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "1-left", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "2-left", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "2-right", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "relative", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\browser\\parts\\statusbar\\statusbarModel.test.ts" + }, + { + "command": "same", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\src\\vs\\workbench\\test\\common\\notifications.test.ts" + }, + { + "command": "lightbulb", + "title": null, + "category": null, + "source": null, + "file_path": "vscode_cloned\\test\\smoke\\src\\areas\\task\\task-quick-pick.test.ts" + } +] \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..74fc4e6 --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "vscode": "^1.1.37" + } +} diff --git a/plugInCommands.py b/plugInCommands.py new file mode 100644 index 0000000..a6434e9 --- /dev/null +++ b/plugInCommands.py @@ -0,0 +1,64 @@ +import json +import glob +import os + +def get_extension_folder(): + if os.name == 'nt': + return os.path.join(os.getenv('USERPROFILE'), '.vscode', 'extensions') + else: + return os.path.join(os.path.expanduser('~'), '.vscode', 'extensions') + +def get_default_keybindings_file(): + return 'package.json' + +def main(): + extension_folder = get_extension_folder() + extension_json_files = glob.glob(f'{extension_folder}/**/package.json', recursive=True) + + all_extensions = {} + + for file in extension_json_files: + with open(file, 'r', encoding='utf-8') as f: + package = json.load(f) + extension_name = package['name'] + extension_version = package['version'] # Read the version from package.json + + if 'contributes' in package and 'commands' in package['contributes']: + commands = package['contributes']['commands'] + + # Group commands by extension name and version + key = f"{extension_name}@{extension_version}" + if key not in all_extensions: + all_extensions[key] = { + "source": extension_name, + "version": extension_version, + "commands": [] + } + + for command in commands: + all_extensions[key]['commands'].append(command) + + # Add default commands + default_keybindings_file = get_default_keybindings_file() + + with open(default_keybindings_file, 'r', encoding='utf-8') as f: + package = json.load(f) + + if 'contributes' in package and 'commands' in package['contributes']: + commands = package['contributes']['commands'] + + for command in commands: + command['source'] = 'default' + all_extensions['default'] = { + "source": "default", + "commands": commands + } + + output_file = "plugInCommandsOutput.json" + print("Commands and titles have been successfully extracted and saved to plugInCommandsOutput.json.") + + with open(output_file, 'w', encoding='utf-8') as outfile: + json.dump(list(all_extensions.values()), outfile, indent=2) + + return list(all_extensions.values()) +