Skip to content

Commit d772d62

Browse files
author
gh-workflow
committed
Update for VSCode 1.105.0
1 parent d853a46 commit d772d62

6 files changed

Lines changed: 276 additions & 60 deletions

linux.keybindings.json

Lines changed: 42 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Default Keybindings of Visual Studio Code 1.104.3 for Linux
1+
// Default Keybindings of Visual Studio Code 1.105.0 for Linux
22

33
[
44
{ "key": "escape escape", "command": "workbench.action.exitZenMode",
@@ -533,12 +533,14 @@
533533
"when": "activeCursorHasCommentingRange" },
534534
{ "key": "ctrl+/", "command": "workbench.action.chat.attachContext",
535535
"when": "inChatInput && chatLocation == 'panel'" },
536+
{ "key": "enter", "command": "workbench.action.chat.delegateToEditSession",
537+
"when": "inChatInput && withinEditSessionDiff" },
536538
{ "key": "ctrl+.", "command": "workbench.action.chat.openModePicker",
537539
"when": "chatIsEnabled && inChatInput && chatLocation == 'panel'" },
538540
{ "key": "ctrl+alt+enter", "command": "workbench.action.chat.runInTerminal",
539541
"when": "accessibleViewInCodeBlock && chatIsEnabled || chatIsEnabled && inChat" },
540542
{ "key": "enter", "command": "workbench.action.chat.submit",
541-
"when": "inChatInput" },
543+
"when": "inChatInput && !withinEditSessionDiff" },
542544
{ "key": "ctrl+enter", "command": "workbench.action.chat.submitWithCodebase",
543545
"when": "chatInputHasText && inChatInput && !chatSessionRequestInProgress || chatPromptFileAttached && inChatInput && !chatSessionRequestInProgress" },
544546
{ "key": "shift+alt+enter", "command": "workbench.action.chat.submitWithoutDispatching",
@@ -559,6 +561,10 @@
559561
"when": "editorFocus && testing.isPeekVisible" },
560562
{ "key": "shift+alt+f8", "command": "testing.goToPreviousMessage",
561563
"when": "editorFocus && testing.isPeekVisible" },
564+
{ "key": "ctrl+shift+up", "command": "workbench.chat.action.focusLastFocused",
565+
"when": "chatCursorAtTop && inChatInput && !quickChatHasFocus" },
566+
{ "key": "ctrl+shift+up", "command": "workbench.chat.action.focusLastFocused",
567+
"when": "inChatInput && isLinux && !quickChatHasFocus || inChatInput && isWindows && !quickChatHasFocus" },
562568
{ "key": "shift+escape", "command": "closeFindWidget",
563569
"when": "editorFocus && findWidgetVisible && !isComposing" },
564570
{ "key": "escape", "command": "closeFindWidget",
@@ -714,15 +720,15 @@
714720
{ "key": "ctrl+c", "command": "chat.inlineResourceAnchor.copyResource",
715721
"when": "chatAttachmentResource" },
716722
{ "key": "ctrl+enter", "command": "chatEditing.acceptAllFiles",
717-
"when": "hasUndecidedChatEditingResource && inChatInput && !chatSessionRequestInProgress" },
723+
"when": "hasUndecidedChatEditingResource && inChatInput" },
718724
{ "key": "ctrl+backspace", "command": "chatEditing.discardAllFiles",
719-
"when": "hasUndecidedChatEditingResource && inChatInput && !chatInputHasText && !chatSessionRequestInProgress" },
725+
"when": "hasUndecidedChatEditingResource && inChatInput && !chatInputHasText" },
720726
{ "key": "alt+f5", "command": "chatEditor.action.navigateNext",
721727
"when": "chatEdits.hasEditorModifications && chatIsEnabled && editorFocus || chatEdits.hasEditorModifications && chatIsEnabled && notebookCellListFocused" },
722728
{ "key": "shift+alt+f5", "command": "chatEditor.action.navigatePrevious",
723729
"when": "chatEdits.hasEditorModifications && chatIsEnabled && editorFocus || chatEdits.hasEditorModifications && chatIsEnabled && notebookCellListFocused" },
724730
{ "key": "f7", "command": "chatEditor.action.showAccessibleDiffView",
725-
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress" },
731+
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isCurrentlyBeingModified" },
726732
{ "key": "shift+alt+f7", "command": "chatEditor.action.toggleDiff",
727733
"when": "chatEdits.hasEditorModifications && editorFocus" },
728734
{ "key": "escape", "command": "closeReplaceInFilesWidget",
@@ -1091,10 +1097,26 @@
10911097
"when": "problemFocus" },
10921098
{ "key": "ctrl+.", "command": "problems.action.showQuickFixes",
10931099
"when": "problemFocus" },
1100+
{ "key": "ctrl+alt+enter", "command": "quickInput.accept",
1101+
"when": "inQuickInput && quickInputType != 'quickWidget'" },
1102+
{ "key": "ctrl+enter", "command": "quickInput.accept",
1103+
"when": "inQuickInput && quickInputType != 'quickWidget'" },
1104+
{ "key": "alt+enter", "command": "quickInput.accept",
1105+
"when": "inQuickInput && quickInputType != 'quickWidget'" },
1106+
{ "key": "enter", "command": "quickInput.accept",
1107+
"when": "inQuickInput && quickInputType != 'quickWidget'" },
10941108
{ "key": "ctrl+alt+home", "command": "quickInput.first",
10951109
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
10961110
{ "key": "ctrl+home", "command": "quickInput.first",
10971111
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
1112+
{ "key": "ctrl+alt+escape", "command": "quickInput.hide",
1113+
"when": "inQuickInput" },
1114+
{ "key": "ctrl+escape", "command": "quickInput.hide",
1115+
"when": "inQuickInput" },
1116+
{ "key": "alt+escape", "command": "quickInput.hide",
1117+
"when": "inQuickInput" },
1118+
{ "key": "escape", "command": "quickInput.hide",
1119+
"when": "inQuickInput" },
10981120
{ "key": "ctrl+alt+end", "command": "quickInput.last",
10991121
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
11001122
{ "key": "ctrl+end", "command": "quickInput.last",
@@ -1273,6 +1295,8 @@
12731295
"when": "chatIsEnabled && inChat" },
12741296
{ "key": "ctrl+f9", "command": "workbench.action.chat.nextFileTree",
12751297
"when": "chatIsEnabled && inChat" },
1298+
{ "key": "ctrl+alt+down", "command": "workbench.action.chat.nextUserPrompt",
1299+
"when": "chatIsEnabled && inChat" },
12761300
{ "key": "ctrl+alt+i", "command": "workbench.action.chat.open",
12771301
"when": "!chatSetupDisabled && !chatSetupHidden" },
12781302
{ "key": "ctrl+alt+.", "command": "workbench.action.chat.openModelPicker",
@@ -1283,6 +1307,8 @@
12831307
"when": "chatIsEnabled && inChat" },
12841308
{ "key": "ctrl+shift+f9", "command": "workbench.action.chat.previousFileTree",
12851309
"when": "chatIsEnabled && inChat" },
1310+
{ "key": "ctrl+alt+up", "command": "workbench.action.chat.previousUserPrompt",
1311+
"when": "chatIsEnabled && inChat" },
12861312
{ "key": "f2", "command": "workbench.action.chat.renameSession",
12871313
"when": "focusedView == 'workbench.view.chat.sessions.local'" },
12881314
{ "key": "delete", "command": "workbench.action.chat.restoreCheckpoint",
@@ -1650,6 +1676,8 @@
16501676
{ "key": "ctrl+numpad0", "command": "workbench.action.zoomReset" },
16511677
{ "key": "ctrl+shift+m", "command": "workbench.actions.view.problems",
16521678
"when": "workbench.panel.markers.view.active" },
1679+
{ "key": "escape", "command": "workbench.actions.workbench.panel.output.clearFilterText",
1680+
"when": "outputFilterFocus" },
16531681
{ "key": "escape", "command": "workbench.banner.focusBanner",
16541682
"when": "bannerFocused" },
16551683
{ "key": "down", "command": "workbench.banner.focusNextAction",
@@ -1701,9 +1729,9 @@
17011729
{ "key": "escape", "command": "breadcrumbs.selectEditor",
17021730
"when": "breadcrumbsActive && breadcrumbsVisible" },
17031731
{ "key": "ctrl+y", "command": "chatEditor.action.acceptHunk",
1704-
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookCellListFocused && !chatEdits.isRequestInProgress" },
1732+
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isCurrentlyBeingModified || chatEdits.hasEditorModifications && notebookCellListFocused && !chatEdits.isCurrentlyBeingModified" },
17051733
{ "key": "ctrl+n", "command": "chatEditor.action.undoHunk",
1706-
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookCellListFocused && !chatEdits.isRequestInProgress" },
1734+
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isCurrentlyBeingModified || chatEdits.hasEditorModifications && notebookCellListFocused && !chatEdits.isCurrentlyBeingModified" },
17071735
{ "key": "tab", "command": "editor.action.inlineSuggest.jump",
17081736
"when": "inlineEditIsVisible && tabShouldJumpToInlineEdit && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible" },
17091737
{ "key": "ctrl+i", "command": "inlineChat.startWithCurrentLine",
@@ -1738,6 +1766,8 @@
17381766
"when": "chatIsEnabled && inChat" },
17391767
{ "key": "ctrl+n", "command": "workbench.action.chat.newChat",
17401768
"when": "chatIsEnabled && inChat" },
1769+
{ "key": "ctrl+alt+enter", "command": "workbench.action.chat.skipTool",
1770+
"when": "chatHasToolConfirmation && inChat" },
17411771
{ "key": "ctrl+pagedown", "command": "workbench.action.debug.nextConsole",
17421772
"when": "inDebugRepl" },
17431773
{ "key": "ctrl+pageup", "command": "workbench.action.debug.prevConsole",
@@ -1774,6 +1804,8 @@
17741804
"when": "simpleSuggestWidgetHasNavigated && terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || simpleSuggestWidgetHasNavigated && terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible || terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible && !config.terminal.integrated.suggest.upArrowNavigatesHistory || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible && !config.terminal.integrated.suggest.upArrowNavigatesHistory" },
17751805
{ "key": "ctrl+shift+l", "command": "workbench.action.terminal.suggestLearnMore",
17761806
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
1807+
{ "key": "ctrl+shift+down", "command": "workbench.chat.action.focusLastFocused",
1808+
"when": "inChat && inChatInput && quickChatHasFocus" },
17771809
{ "key": "tab", "command": "editor.action.inlineSuggest.commit",
17781810
"when": "inInlineEditsPreviewEditor" },
17791811
{ "key": "f6", "command": "workbench.action.debug.pause",
@@ -1801,11 +1833,11 @@
18011833
{ "key": "ctrl+v", "command": "filesExplorer.paste",
18021834
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceReadonly && !inputFocus" },
18031835
{ "key": "ctrl+shift+y", "command": "chatEditor.action.accept",
1804-
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isRequestInProgress" },
1836+
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isCurrentlyBeingModified || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isCurrentlyBeingModified" },
18051837
{ "key": "ctrl+alt+y", "command": "chatEditor.action.acceptAllEdits",
1806-
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isRequestInProgress" },
1838+
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isCurrentlyBeingModified || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isCurrentlyBeingModified" },
18071839
{ "key": "ctrl+shift+n", "command": "chatEditor.action.reject",
1808-
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isRequestInProgress" },
1840+
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isCurrentlyBeingModified || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isCurrentlyBeingModified" },
18091841
{ "key": "shift+delete", "command": "deleteFile",
18101842
"when": "filesExplorerFocus && foldersViewVisible && !inputFocus" },
18111843
{ "key": "delete", "command": "deleteFile",

0 commit comments

Comments
 (0)