Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update wrappers based on VS Code 1.84.0 #310

Merged
merged 2 commits into from
Nov 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the Keyboard Macro Bata extension will be documented in this file.

### [Unreleased]
- Update
- Updated default keybindings wrappers based on vscode 1.84.0 [#310](https://github.com/tshino/vscode-kb-macro/pull/310)

### [0.13.9] - 2023-10-08
- Update
- Updated default keybindings wrappers based on vscode 1.83.0. [#302](https://github.com/tshino/vscode-kb-macro/pull/302)
Expand Down
58 changes: 47 additions & 11 deletions generator/default-keybindings-linux.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Default Keybindings of Visual Studio Code 1.83.1 for Linux
// Default Keybindings of Visual Studio Code 1.84.0 for Linux
// Override key bindings by placing them into your key bindings file.
[
{ "key": "escape escape", "command": "workbench.action.exitZenMode",
Expand Down Expand Up @@ -139,6 +139,8 @@
"when": "inChatInput && textInputFocus" },
{ "key": "ctrl+up", "command": "chat.action.focus",
"when": "inChatInput && textInputFocus" },
{ "key": "ctrl+enter", "command": "chat.action.submitSecondaryAgent",
"when": "inChatInput && textInputFocus" },
{ "key": "shift+escape", "command": "closeBreakpointWidget",
"when": "breakpointWidgetVisible && textInputFocus" },
{ "key": "escape", "command": "closeBreakpointWidget",
Expand Down Expand Up @@ -495,7 +497,7 @@
"when": "inWelcome && activeEditor == 'gettingStartedPage'" },
{ "key": "ctrl+k ctrl+alt+c", "command": "workbench.action.addComment" },
{ "key": "ctrl+alt+enter", "command": "workbench.action.chat.runInTerminal",
"when": "hasChatProvider && inChat" },
"when": "hasChatProvider && inChat && !accessibilityModeEnabled" },
{ "key": "alt+f5", "command": "workbench.action.editor.nextChange",
"when": "editorTextFocus && !textCompareEditorActive" },
{ "key": "shift+alt+f5", "command": "workbench.action.editor.previousChange",
Expand Down Expand Up @@ -878,8 +880,12 @@
"when": "config.notebook.navigation.allowNavigateToSurroundingCells && notebookCursorNavigationMode && notebookEditorFocused && !accessibilityModeEnabled && !isEmbeddedDiffEditor && !notebookCellMarkdownEditMode && notebookCellType == 'markup'" },
{ "key": "ctrl+down", "command": "notebook.focusNextEditor",
"when": "notebookEditorFocused && notebookOutputFocused" },
{ "key": "ctrl+alt+pagedown", "command": "notebook.focusNextEditor",
"when": "notebookEditorFocused" },
{ "key": "up", "command": "notebook.focusPreviousEditor",
"when": "config.notebook.navigation.allowNavigateToSurroundingCells && notebookCursorNavigationMode && notebookEditorFocused && !accessibilityModeEnabled && !isEmbeddedDiffEditor && !notebookCellMarkdownEditMode && notebookCellType == 'markup'" },
{ "key": "ctrl+alt+pageup", "command": "notebook.focusPreviousEditor",
"when": "notebookEditorFocused && !accessibilityModeEnabled" },
{ "key": "ctrl+home", "command": "notebook.focusTop",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "left", "command": "notebook.fold",
Expand All @@ -895,7 +901,7 @@
{ "key": "ctrl+shift+]", "command": "notebook.unfold",
"when": "notebookEditorFocused && !inputFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "ctrl+shift+a", "command": "notification.acceptPrimaryAction",
"when": "notificationToastsVisible" },
"when": "notificationFocus" },
{ "key": "delete", "command": "notification.clear",
"when": "notificationFocus" },
{ "key": "left", "command": "notification.collapse",
Expand Down Expand Up @@ -1049,18 +1055,22 @@
"when": "hasChatProvider && inChat" },
{ "key": "ctrl+down", "command": "workbench.action.chat.focusInput",
"when": "inChat && !editorFocus" },
{ "key": "f9", "command": "workbench.action.chat.nextCodeBlock",
{ "key": "ctrl+enter", "command": "workbench.action.chat.insertCodeBlock",
"when": "accessibilityModeEnabled && hasChatProvider && inChat" },
{ "key": "ctrl+alt+pagedown", "command": "workbench.action.chat.nextCodeBlock",
"when": "hasChatProvider && inChat" },
{ "key": "ctrl+f9", "command": "workbench.action.chat.nextFileTree",
"when": "hasChatProvider && inChat" },
{ "key": "ctrl+alt+i", "command": "workbench.action.chat.open",
"when": "hasChatProvider" },
{ "key": "shift+f9", "command": "workbench.action.chat.previousCodeBlock",
{ "key": "ctrl+alt+pageup", "command": "workbench.action.chat.previousCodeBlock",
"when": "hasChatProvider && inChat" },
{ "key": "ctrl+shift+f9", "command": "workbench.action.chat.previousFileTree",
"when": "hasChatProvider && inChat" },
{ "key": "delete", "command": "workbench.action.chat.remove",
"when": "inChat && !inChatInput" },
{ "key": "ctrl+/", "command": "workbench.action.chat.runInTerminal",
"when": "accessibilityModeEnabled && hasChatProvider && inChat" },
{ "key": "ctrl+w", "command": "workbench.action.closeActiveEditor" },
{ "key": "ctrl+k ctrl+w", "command": "workbench.action.closeAllEditors" },
{ "key": "ctrl+k ctrl+shift+w", "command": "workbench.action.closeAllGroups" },
Expand Down Expand Up @@ -1139,7 +1149,8 @@
{ "key": "ctrl+6", "command": "workbench.action.focusSixthEditorGroup" },
{ "key": "ctrl+3", "command": "workbench.action.focusThirdEditorGroup" },
{ "key": "ctrl+g", "command": "workbench.action.gotoLine" },
{ "key": "ctrl+shift+o", "command": "workbench.action.gotoSymbol" },
{ "key": "ctrl+shift+o", "command": "workbench.action.gotoSymbol",
"when": "!accessibilityHelpIsShown && !accessibleViewIsShown" },
{ "key": "down", "command": "workbench.action.interactivePlayground.arrowDown",
"when": "interactivePlaygroundFocus && !editorTextFocus" },
{ "key": "up", "command": "workbench.action.interactivePlayground.arrowUp",
Expand Down Expand Up @@ -1358,6 +1369,8 @@
{ "key": "shift+alt+0", "command": "workbench.action.toggleEditorGroupLayout" },
{ "key": "f11", "command": "workbench.action.toggleFullScreen",
"when": "!isIOS" },
{ "key": "ctrl+k ctrl+m", "command": "workbench.action.toggleMaximizeEditorGroup",
"when": "maximizedEditorGroup || multipleEditorGroups" },
{ "key": "ctrl+j", "command": "workbench.action.togglePanel" },
{ "key": "ctrl+b", "command": "workbench.action.toggleSidebarVisibility" },
{ "key": "ctrl+k z", "command": "workbench.action.toggleZenMode" },
Expand Down Expand Up @@ -1544,6 +1557,16 @@
"when": "isDevelopment" },
{ "key": "escape", "command": "notifications.hideToasts",
"when": "notificationFocus && notificationToastsVisible" },
{ "key": "escape", "command": "workbench.action.chat.stopListening",
"when": "hasSpeechProvider && voiceChatInProgress" },
{ "key": "escape", "command": "workbench.action.chat.stopListeningInChatEditor",
"when": "hasSpeechProvider && voiceChatInEditorInProgress" },
{ "key": "escape", "command": "workbench.action.chat.stopListeningInChatView",
"when": "hasSpeechProvider && voiceChatInViewInProgress" },
{ "key": "escape", "command": "workbench.action.chat.stopListeningInInlineChat",
"when": "hasSpeechProvider && inlineVoiceChatInProgress" },
{ "key": "escape", "command": "workbench.action.chat.stopListeningInQuickChat",
"when": "hasSpeechProvider && quickVoiceChatInProgress" },
{ "key": "f10", "command": "extension.node-debug.startWithStopOnEntry",
"when": "!inDebugMode && debugConfigurationType == 'node' || !inDebugMode && debugConfigurationType == 'pwa-extensionHost' || !inDebugMode && debugConfigurationType == 'pwa-node'" },
{ "key": "ctrl+k ctrl+alt+s", "command": "git.stageSelectedRanges",
Expand Down Expand Up @@ -1638,6 +1661,7 @@
// - cursorWordStartRight
// - cursorWordStartRightSelect
// - cut
// - debug.action.openDisassemblyView
// - debug.action.toggleDisassemblyViewSourceCode
// - debug.addConfiguration
// - debug.addToWatchExpressions
Expand Down Expand Up @@ -1770,7 +1794,6 @@
// - editor.debug.action.editBreakpoint
// - editor.debug.action.goToNextBreakpoint
// - editor.debug.action.goToPreviousBreakpoint
// - editor.debug.action.openDisassemblyView
// - editor.debug.action.runToCursor
// - editor.debug.action.selectionToRepl
// - editor.debug.action.selectionToWatch
Expand Down Expand Up @@ -1916,6 +1939,8 @@
// - git.fetch
// - git.fetchAll
// - git.fetchPrune
// - git.generateCommitMessage
// - git.generateCommitMessageCancel
// - git.ignore
// - git.init
// - git.manageUnsafeRepositories
Expand Down Expand Up @@ -2199,7 +2224,6 @@
// - references-view.showTypeHierarchy
// - references-view.tree.focus
// - references-view.tree.resetViewLocation
// - remote.explorer.switch
// - remote.tunnel.changeLocalPort
// - remote.tunnel.closeCommandPalette
// - remote.tunnel.copyAddressCommandPalette
Expand Down Expand Up @@ -2321,6 +2345,9 @@
// - welcome.markStepIncomplete
// - welcome.showAllWalkthroughs
// - workbench.action.acceptSelectedQuickOpenItem
// - workbench.action.activityBarLocation.hide
// - workbench.action.activityBarLocation.side
// - workbench.action.activityBarLocation.top
// - workbench.action.addRootFolder
// - workbench.action.alignPanelCenter
// - workbench.action.alignPanelJustify
Expand All @@ -2335,14 +2362,19 @@
// - workbench.action.chat.copyItem
// - workbench.action.chat.export
// - workbench.action.chat.import
// - workbench.action.chat.insertCodeBlock
// - workbench.action.chat.inlineVoiceChat
// - workbench.action.chat.insertIntoNewFile
// - workbench.action.chat.insertIntoNotebook
// - workbench.action.chat.markHelpful
// - workbench.action.chat.markUnhelpful
// - workbench.action.chat.openInEditor
// - workbench.action.chat.openInSidebar
// - workbench.action.chat.quickVoiceChat
// - workbench.action.chat.selectAndInsertFile
// - workbench.action.chat.startVoiceChat
// - workbench.action.chat.stopListeningAndSubmit
// - workbench.action.chat.submit
// - workbench.action.chat.voiceChatInChatView
// - workbench.action.chatEditor.clear
// - workbench.action.chatEditor.clearHistory
// - workbench.action.clearCommandHistory
Expand Down Expand Up @@ -2443,6 +2475,7 @@
// - workbench.action.focusStatusBar
// - workbench.action.focusTitleBar
// - workbench.action.generateColorTheme
// - workbench.action.hideEditorTabs
// - workbench.action.increaseViewHeight
// - workbench.action.increaseViewSize
// - workbench.action.increaseViewWidth
Expand All @@ -2468,7 +2501,7 @@
// - workbench.action.logStorage
// - workbench.action.logWorkingCopies
// - workbench.action.manageTrustedDomain
// - workbench.action.maximizeEditor
// - workbench.action.maximizeEditorHideSidebar
// - workbench.action.minimizeOtherEditors
// - workbench.action.moveEditorToAboveGroup
// - workbench.action.moveEditorToBelowGroup
Expand Down Expand Up @@ -2602,12 +2635,14 @@
// - workbench.action.setLogLevel
// - workbench.action.showAboutDialog
// - workbench.action.showAllEditorsByMostRecentlyUsed
// - workbench.action.showEditorTab
// - workbench.action.showEditorsInActiveGroup
// - workbench.action.showEditorsInGroup
// - workbench.action.showEmmetCommands
// - workbench.action.showErrorsWarnings
// - workbench.action.showInteractivePlayground
// - workbench.action.showLogs
// - workbench.action.showMultipleEditorTabs
// - workbench.action.showOutputChannels
// - workbench.action.showRuntimeExtensions
// - workbench.action.showWindowLog
Expand Down Expand Up @@ -2716,14 +2751,15 @@
// - workbench.action.toggleSplitEditorInGroup
// - workbench.action.toggleSplitEditorInGroupLayout
// - workbench.action.toggleStatusbarVisibility
// - workbench.action.toggleTabsVisibility
// - workbench.action.triggerReconnect
// - workbench.action.troubleshootIssue.start
// - workbench.action.troubleshootIssue.stop
// - workbench.action.unlockEditorGroup
// - workbench.action.url.openUrl
// - workbench.action.webview.openDeveloperTools
// - workbench.action.webview.reloadWebviewAction
// - workbench.actions.accounts
// - workbench.actions.manage
// - workbench.actions.sync.compareWithLocal
// - workbench.actions.sync.editMachineName
// - workbench.actions.sync.loadActivity
Expand Down
Loading