Skip to content

Commit e6dbdc2

Browse files
author
gh-workflow
committed
Update for VSCode 1.101.0
1 parent f5b7218 commit e6dbdc2

6 files changed

+78
-78
lines changed

linux.keybindings.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Default Keybindings of Visual Studio Code 1.100.3 for Linux
1+
// Default Keybindings of Visual Studio Code 1.101.0 for Linux
22

33
[
44
{ "key": "escape escape", "command": "workbench.action.exitZenMode",
@@ -519,6 +519,8 @@
519519
"when": "inSettingsSearch && !suggestWidgetVisible" },
520520
{ "key": "ctrl+f", "command": "settings.action.search",
521521
"when": "inSettingsEditor" },
522+
{ "key": "ctrl+i", "command": "settings.action.toggleAiSearch",
523+
"when": "inSettingsEditor" },
522524
{ "key": "ctrl+/", "command": "toggleExplainMode",
523525
"when": "suggestWidgetVisible" },
524526
{ "key": "ctrl+k f2", "command": "togglePeekWidgetFocus",
@@ -529,8 +531,6 @@
529531
"when": "activeCursorHasCommentingRange" },
530532
{ "key": "ctrl+/", "command": "workbench.action.chat.attachContext",
531533
"when": "inChatInput && chatLocation == 'panel'" },
532-
{ "key": "ctrl+shift+/", "command": "workbench.action.chat.attachTools",
533-
"when": "inChatInput && chatMode == 'agent'" },
534534
{ "key": "ctrl+alt+enter", "command": "workbench.action.chat.runInTerminal",
535535
"when": "accessibleViewInCodeBlock && chatIsEnabled || chatIsEnabled && inChat" },
536536
{ "key": "enter", "command": "workbench.action.chat.submit",
@@ -717,14 +717,10 @@
717717
"when": "hasUndecidedChatEditingResource && inChatInput && !chatSessionRequestInProgress" },
718718
{ "key": "ctrl+backspace", "command": "chatEditing.discardAllFiles",
719719
"when": "hasUndecidedChatEditingResource && inChatInput && !chatInputHasText && !chatSessionRequestInProgress" },
720-
{ "key": "ctrl+enter", "command": "chatEditor.action.accept",
721-
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress" },
722720
{ "key": "alt+f5", "command": "chatEditor.action.navigateNext",
723721
"when": "chatEdits.hasEditorModifications && chatIsEnabled && editorFocus || chatEdits.hasEditorModifications && chatIsEnabled && notebookCellListFocused" },
724722
{ "key": "shift+alt+f5", "command": "chatEditor.action.navigatePrevious",
725723
"when": "chatEdits.hasEditorModifications && chatIsEnabled && editorFocus || chatEdits.hasEditorModifications && chatIsEnabled && notebookCellListFocused" },
726-
{ "key": "ctrl+backspace", "command": "chatEditor.action.reject",
727-
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress" },
728724
{ "key": "f7", "command": "chatEditor.action.showAccessibleDiffView",
729725
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress" },
730726
{ "key": "shift+alt+f7", "command": "chatEditor.action.toggleDiff",
@@ -1264,6 +1260,8 @@
12641260
"when": "inputFocus && navigableContainerFocused || navigableContainerFocused && treestickyScrollFocused || navigableContainerFocused && !listFocus || navigableContainerFocused && listScrollAtBoundary == 'both' || navigableContainerFocused && listScrollAtBoundary == 'bottom'" },
12651261
{ "key": "ctrl+up", "command": "widgetNavigation.focusPrevious",
12661262
"when": "inputFocus && navigableContainerFocused || navigableContainerFocused && treestickyScrollFocused || navigableContainerFocused && !listFocus || navigableContainerFocused && listScrollAtBoundary == 'both' || navigableContainerFocused && listScrollAtBoundary == 'top'" },
1263+
{ "key": "ctrl+alt+/", "command": "workbench.action.chat.attach.instructions",
1264+
"when": "chatIsEnabled && config.chat.promptFiles" },
12671265
{ "key": "ctrl+escape", "command": "workbench.action.chat.cancel" },
12681266
{ "key": "ctrl+down", "command": "workbench.action.chat.focusInput",
12691267
"when": "inChat && !inChatInput && !quickChatHasFocus" },
@@ -1278,9 +1276,9 @@
12781276
{ "key": "ctrl+f9", "command": "workbench.action.chat.nextFileTree",
12791277
"when": "chatIsEnabled && inChat" },
12801278
{ "key": "ctrl+alt+i", "command": "workbench.action.chat.open",
1281-
"when": "!chatSetupHidden" },
1279+
"when": "!chatSetupDisabled && !chatSetupHidden" },
12821280
{ "key": "ctrl+shift+alt+i", "command": "workbench.action.chat.openAgent",
1283-
"when": "config.chat.agent.enabled && !chatSetupHidden" },
1281+
"when": "config.chat.agent.enabled && !chatSetupDisabled && !chatSetupHidden" },
12841282
{ "key": "ctrl+alt+.", "command": "workbench.action.chat.openModelPicker",
12851283
"when": "chatIsEnabled && inChatInput" },
12861284
{ "key": "ctrl+alt+pageup", "command": "workbench.action.chat.previousCodeBlock",
@@ -1656,8 +1654,6 @@
16561654
"when": "bannerFocused" },
16571655
{ "key": "left", "command": "workbench.banner.focusPreviousAction",
16581656
"when": "bannerFocused" },
1659-
{ "key": "ctrl+alt+/", "command": "workbench.command.instructions.attach",
1660-
"when": "chatIsEnabled && config.chat.promptFiles" },
16611657
{ "key": "ctrl+shift+y", "command": "workbench.debug.action.toggleRepl",
16621658
"when": "workbench.panel.repl.view.active" },
16631659
{ "key": "ctrl+c", "command": "workbench.debug.viewlet.action.copyValue",
@@ -1698,9 +1694,9 @@
16981694
"when": "breadcrumbsActive && breadcrumbsVisible && listFocus && !inputFocus && !treestickyScrollFocused" },
16991695
{ "key": "escape", "command": "breadcrumbs.selectEditor",
17001696
"when": "breadcrumbsActive && breadcrumbsVisible" },
1701-
{ "key": "ctrl+shift+enter", "command": "chatEditor.action.acceptHunk",
1697+
{ "key": "ctrl+y", "command": "chatEditor.action.acceptHunk",
17021698
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookCellListFocused && !chatEdits.isRequestInProgress" },
1703-
{ "key": "ctrl+shift+backspace", "command": "chatEditor.action.undoHunk",
1699+
{ "key": "ctrl+n", "command": "chatEditor.action.undoHunk",
17041700
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookCellListFocused && !chatEdits.isRequestInProgress" },
17051701
{ "key": "tab", "command": "editor.action.inlineSuggest.jump",
17061702
"when": "inlineEditIsVisible && tabShouldJumpToInlineEdit && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible" },
@@ -1780,6 +1776,10 @@
17801776
"when": "mostRecentReplEditor" },
17811777
{ "key": "ctrl+v", "command": "filesExplorer.paste",
17821778
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceReadonly && !inputFocus" },
1779+
{ "key": "ctrl+shift+y", "command": "chatEditor.action.accept",
1780+
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isRequestInProgress" },
1781+
{ "key": "ctrl+shift+n", "command": "chatEditor.action.reject",
1782+
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isRequestInProgress" },
17831783
{ "key": "shift+delete", "command": "deleteFile",
17841784
"when": "filesExplorerFocus && foldersViewVisible && !inputFocus" },
17851785
{ "key": "delete", "command": "deleteFile",

linux.negative.keybindings.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Default Keybindings of Visual Studio Code 1.100.3 for Linux
1+
// Default Keybindings of Visual Studio Code 1.101.0 for Linux
22

33
[
44
{ "key": "escape escape", "command": "-workbench.action.exitZenMode",
@@ -519,6 +519,8 @@
519519
"when": "inSettingsSearch && !suggestWidgetVisible" },
520520
{ "key": "ctrl+f", "command": "-settings.action.search",
521521
"when": "inSettingsEditor" },
522+
{ "key": "ctrl+i", "command": "-settings.action.toggleAiSearch",
523+
"when": "inSettingsEditor" },
522524
{ "key": "ctrl+/", "command": "-toggleExplainMode",
523525
"when": "suggestWidgetVisible" },
524526
{ "key": "ctrl+k f2", "command": "-togglePeekWidgetFocus",
@@ -529,8 +531,6 @@
529531
"when": "activeCursorHasCommentingRange" },
530532
{ "key": "ctrl+/", "command": "-workbench.action.chat.attachContext",
531533
"when": "inChatInput && chatLocation == 'panel'" },
532-
{ "key": "ctrl+shift+/", "command": "-workbench.action.chat.attachTools",
533-
"when": "inChatInput && chatMode == 'agent'" },
534534
{ "key": "ctrl+alt+enter", "command": "-workbench.action.chat.runInTerminal",
535535
"when": "accessibleViewInCodeBlock && chatIsEnabled || chatIsEnabled && inChat" },
536536
{ "key": "enter", "command": "-workbench.action.chat.submit",
@@ -717,14 +717,10 @@
717717
"when": "hasUndecidedChatEditingResource && inChatInput && !chatSessionRequestInProgress" },
718718
{ "key": "ctrl+backspace", "command": "-chatEditing.discardAllFiles",
719719
"when": "hasUndecidedChatEditingResource && inChatInput && !chatInputHasText && !chatSessionRequestInProgress" },
720-
{ "key": "ctrl+enter", "command": "-chatEditor.action.accept",
721-
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress" },
722720
{ "key": "alt+f5", "command": "-chatEditor.action.navigateNext",
723721
"when": "chatEdits.hasEditorModifications && chatIsEnabled && editorFocus || chatEdits.hasEditorModifications && chatIsEnabled && notebookCellListFocused" },
724722
{ "key": "shift+alt+f5", "command": "-chatEditor.action.navigatePrevious",
725723
"when": "chatEdits.hasEditorModifications && chatIsEnabled && editorFocus || chatEdits.hasEditorModifications && chatIsEnabled && notebookCellListFocused" },
726-
{ "key": "ctrl+backspace", "command": "-chatEditor.action.reject",
727-
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress" },
728724
{ "key": "f7", "command": "-chatEditor.action.showAccessibleDiffView",
729725
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress" },
730726
{ "key": "shift+alt+f7", "command": "-chatEditor.action.toggleDiff",
@@ -1264,6 +1260,8 @@
12641260
"when": "inputFocus && navigableContainerFocused || navigableContainerFocused && treestickyScrollFocused || navigableContainerFocused && !listFocus || navigableContainerFocused && listScrollAtBoundary == 'both' || navigableContainerFocused && listScrollAtBoundary == 'bottom'" },
12651261
{ "key": "ctrl+up", "command": "-widgetNavigation.focusPrevious",
12661262
"when": "inputFocus && navigableContainerFocused || navigableContainerFocused && treestickyScrollFocused || navigableContainerFocused && !listFocus || navigableContainerFocused && listScrollAtBoundary == 'both' || navigableContainerFocused && listScrollAtBoundary == 'top'" },
1263+
{ "key": "ctrl+alt+/", "command": "-workbench.action.chat.attach.instructions",
1264+
"when": "chatIsEnabled && config.chat.promptFiles" },
12671265
{ "key": "ctrl+escape", "command": "-workbench.action.chat.cancel" },
12681266
{ "key": "ctrl+down", "command": "-workbench.action.chat.focusInput",
12691267
"when": "inChat && !inChatInput && !quickChatHasFocus" },
@@ -1278,9 +1276,9 @@
12781276
{ "key": "ctrl+f9", "command": "-workbench.action.chat.nextFileTree",
12791277
"when": "chatIsEnabled && inChat" },
12801278
{ "key": "ctrl+alt+i", "command": "-workbench.action.chat.open",
1281-
"when": "!chatSetupHidden" },
1279+
"when": "!chatSetupDisabled && !chatSetupHidden" },
12821280
{ "key": "ctrl+shift+alt+i", "command": "-workbench.action.chat.openAgent",
1283-
"when": "config.chat.agent.enabled && !chatSetupHidden" },
1281+
"when": "config.chat.agent.enabled && !chatSetupDisabled && !chatSetupHidden" },
12841282
{ "key": "ctrl+alt+.", "command": "-workbench.action.chat.openModelPicker",
12851283
"when": "chatIsEnabled && inChatInput" },
12861284
{ "key": "ctrl+alt+pageup", "command": "-workbench.action.chat.previousCodeBlock",
@@ -1656,8 +1654,6 @@
16561654
"when": "bannerFocused" },
16571655
{ "key": "left", "command": "-workbench.banner.focusPreviousAction",
16581656
"when": "bannerFocused" },
1659-
{ "key": "ctrl+alt+/", "command": "-workbench.command.instructions.attach",
1660-
"when": "chatIsEnabled && config.chat.promptFiles" },
16611657
{ "key": "ctrl+shift+y", "command": "-workbench.debug.action.toggleRepl",
16621658
"when": "workbench.panel.repl.view.active" },
16631659
{ "key": "ctrl+c", "command": "-workbench.debug.viewlet.action.copyValue",
@@ -1698,9 +1694,9 @@
16981694
"when": "breadcrumbsActive && breadcrumbsVisible && listFocus && !inputFocus && !treestickyScrollFocused" },
16991695
{ "key": "escape", "command": "-breadcrumbs.selectEditor",
17001696
"when": "breadcrumbsActive && breadcrumbsVisible" },
1701-
{ "key": "ctrl+shift+enter", "command": "-chatEditor.action.acceptHunk",
1697+
{ "key": "ctrl+y", "command": "-chatEditor.action.acceptHunk",
17021698
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookCellListFocused && !chatEdits.isRequestInProgress" },
1703-
{ "key": "ctrl+shift+backspace", "command": "-chatEditor.action.undoHunk",
1699+
{ "key": "ctrl+n", "command": "-chatEditor.action.undoHunk",
17041700
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookCellListFocused && !chatEdits.isRequestInProgress" },
17051701
{ "key": "tab", "command": "-editor.action.inlineSuggest.jump",
17061702
"when": "inlineEditIsVisible && tabShouldJumpToInlineEdit && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible" },
@@ -1780,6 +1776,10 @@
17801776
"when": "mostRecentReplEditor" },
17811777
{ "key": "ctrl+v", "command": "-filesExplorer.paste",
17821778
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceReadonly && !inputFocus" },
1779+
{ "key": "ctrl+shift+y", "command": "-chatEditor.action.accept",
1780+
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isRequestInProgress" },
1781+
{ "key": "ctrl+shift+n", "command": "-chatEditor.action.reject",
1782+
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isRequestInProgress" },
17831783
{ "key": "shift+delete", "command": "-deleteFile",
17841784
"when": "filesExplorerFocus && foldersViewVisible && !inputFocus" },
17851785
{ "key": "delete", "command": "-deleteFile",

0 commit comments

Comments
 (0)