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.69.0 #126

Merged
merged 2 commits into from
Jul 9, 2022
Merged
Changes from 1 commit
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
Next Next commit
Update for VSCode 1.69.0
  • Loading branch information
gh-workflow committed Jul 8, 2022
commit ef782757835bd385a2ab6018b8c5765f55694e51
60 changes: 56 additions & 4 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.68.1 for Linux
// Default Keybindings of Visual Studio Code 1.69.0 for Linux
// Override key bindings by placing them into your key bindings file.
[
{ "key": "escape escape", "command": "workbench.action.exitZenMode",
@@ -733,8 +733,12 @@
"when": "notebookEditorFocused && !editorFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "ctrl+end", "command": "notebook.focusBottom",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "down", "command": "notebook.focusNextEditor",
"when": "config.notebook.navigation.allowNavigateToSurroundingCells && notebookCursorNavigationMode && notebookEditorFocused && !notebookCellMarkdownEditMode && notebookCellType == 'markup'" },
{ "key": "ctrl+down", "command": "notebook.focusNextEditor",
"when": "notebookEditorFocused && notebookOutputFocused" },
{ "key": "up", "command": "notebook.focusPreviousEditor",
"when": "config.notebook.navigation.allowNavigateToSurroundingCells && notebookCursorNavigationMode && notebookEditorFocused && !notebookCellMarkdownEditMode && notebookCellType == 'markup'" },
{ "key": "ctrl+home", "command": "notebook.focusTop",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "left", "command": "notebook.fold",
@@ -918,6 +922,8 @@
"when": "debuggersAvailable && debugState != 'initializing'" },
{ "key": "f5", "command": "workbench.action.debug.start",
"when": "debuggersAvailable && debugState == 'inactive'" },
{ "key": "ctrl+f11", "command": "workbench.action.debug.stepIntoTarget",
"when": "inDebugMode && stepIntoTargetsSupported && debugState == 'stopped'" },
{ "key": "shift+f11", "command": "workbench.action.debug.stepOut",
"when": "debugState == 'stopped'" },
{ "key": "f10", "command": "workbench.action.debug.stepOver",
@@ -992,8 +998,10 @@
{ "key": "shift+alt+9", "command": "workbench.action.moveEditorToLastGroup" },
{ "key": "ctrl+alt+right", "command": "workbench.action.moveEditorToNextGroup" },
{ "key": "ctrl+alt+left", "command": "workbench.action.moveEditorToPreviousGroup" },
{ "key": "ctrl+alt+-", "command": "workbench.action.navigateBack" },
{ "key": "ctrl+shift+-", "command": "workbench.action.navigateForward" },
{ "key": "ctrl+alt+-", "command": "workbench.action.navigateBack",
"when": "canNavigateBack" },
{ "key": "ctrl+shift+-", "command": "workbench.action.navigateForward",
"when": "canNavigateForward" },
{ "key": "ctrl+k ctrl+q", "command": "workbench.action.navigateToLastEditLocation" },
{ "key": "ctrl+shift+n", "command": "workbench.action.newWindow" },
{ "key": "ctrl+pagedown", "command": "workbench.action.nextEditor" },
@@ -1077,10 +1085,18 @@
"when": "terminalHasBeenCreated && terminalTabsFocus || terminalIsOpen && terminalTabsFocus || terminalProcessSupported && terminalTabsFocus" },
{ "key": "escape", "command": "workbench.action.terminal.navigationModeExit",
"when": "accessibilityModeEnabled && terminalA11yTreeFocus && terminalProcessSupported" },
{ "key": "down", "command": "workbench.action.terminal.navigationModeFocusNext",
"when": "accessibilityModeEnabled && terminalA11yTreeFocus && terminalNavigationModeActive && terminalProcessSupported || accessibilityModeEnabled && terminalFocus && terminalNavigationModeActive && terminalProcessSupported" },
{ "key": "ctrl+down", "command": "workbench.action.terminal.navigationModeFocusNext",
"when": "accessibilityModeEnabled && terminalA11yTreeFocus && terminalProcessSupported || accessibilityModeEnabled && terminalFocus && terminalProcessSupported" },
{ "key": "pagedown", "command": "workbench.action.terminal.navigationModeFocusNextPage",
"when": "accessibilityModeEnabled && terminalA11yTreeFocus && terminalNavigationModeActive && terminalProcessSupported || accessibilityModeEnabled && terminalFocus && terminalNavigationModeActive && terminalProcessSupported" },
{ "key": "up", "command": "workbench.action.terminal.navigationModeFocusPrevious",
"when": "accessibilityModeEnabled && terminalA11yTreeFocus && terminalNavigationModeActive && terminalProcessSupported || accessibilityModeEnabled && terminalFocus && terminalNavigationModeActive && terminalProcessSupported" },
{ "key": "ctrl+up", "command": "workbench.action.terminal.navigationModeFocusPrevious",
"when": "accessibilityModeEnabled && terminalA11yTreeFocus && terminalProcessSupported || accessibilityModeEnabled && terminalFocus && terminalProcessSupported" },
{ "key": "pageup", "command": "workbench.action.terminal.navigationModeFocusPreviousPage",
"when": "accessibilityModeEnabled && terminalA11yTreeFocus && terminalNavigationModeActive && terminalProcessSupported || accessibilityModeEnabled && terminalFocus && terminalNavigationModeActive && terminalProcessSupported" },
{ "key": "ctrl+shift+`", "command": "workbench.action.terminal.new",
"when": "terminalProcessSupported || terminalWebExtensionContributedProfile" },
{ "key": "ctrl+shift+c", "command": "workbench.action.terminal.openNativeConsole",
@@ -1214,6 +1230,10 @@
"when": "focusedView != ''" },
{ "key": "ctrl+k up", "command": "views.moveViewUp",
"when": "focusedView != ''" },
{ "key": "ctrl+pagedown", "command": "workbench.action.debug.nextConsole",
"when": "inDebugRepl" },
{ "key": "ctrl+pageup", "command": "workbench.action.debug.prevConsole",
"when": "inDebugRepl" },
{ "key": "f6", "command": "workbench.action.debug.pause",
"when": "debugState == 'running'" },
{ "key": "f2", "command": "debug.renameWatchExpression",
@@ -1445,6 +1465,7 @@
// - editor.action.peekDeclaration
// - editor.action.peekTypeDefinition
// - editor.action.previewDeclaration
// - editor.action.refactor.preview
// - editor.action.referenceSearch.trigger
// - editor.action.reindentlines
// - editor.action.reindentselectedlines
@@ -1466,6 +1487,7 @@
// - editor.action.toggleMinimap
// - editor.action.toggleRenderControlCharacter
// - editor.action.toggleRenderWhitespace
// - editor.action.transformToKebabcase
// - editor.action.transformToLowercase
// - editor.action.transformToSnakecase
// - editor.action.transformToTitlecase
@@ -1532,6 +1554,9 @@
// - extension.js-debug.createDebuggerTerminal
// - extension.js-debug.createDiagnostics
// - extension.js-debug.debugLink
// - extension.js-debug.disableSourceMapStepping
// - extension.js-debug.enableSourceMapStepping
// - extension.js-debug.getDiagnosticLogs
// - extension.js-debug.npmScript
// - extension.js-debug.openEdgeDevTools
// - extension.js-debug.prettyPrint
@@ -1603,6 +1628,8 @@
// - git.commitAllSignedNoVerify
// - git.commitEmpty
// - git.commitEmptyNoVerify
// - git.commitMessageAccept
// - git.commitMessageDiscard
// - git.commitNoVerify
// - git.commitStaged
// - git.commitStagedAmend
@@ -1675,6 +1702,8 @@
// - git.undoCommit
// - git.unstage
// - git.unstageAll
// - github.copyVscodeDevLink
// - github.copyVscodeDevLinkFile
// - github.publish
// - goToNextReferenceFromEmbeddedEditor
// - goToPreviousReferenceFromEmbeddedEditor
@@ -1694,6 +1723,7 @@
// - jsExcludedCallers.focus
// - jsExcludedCallers.resetViewLocation
// - json.clearCache
// - keybindings.editor.clearSearchHistory
// - keybindings.editor.copyCommandKeybindingEntry
// - keybindings.editor.copyCommandTitle
// - keybindings.editor.resetKeybinding
@@ -1728,9 +1758,16 @@
// - merge-conflict.compare
// - merge-conflict.next
// - merge-conflict.previous
// - merge.columnLayout
// - merge.dev.copyContents
// - merge.dev.openContents
// - merge.toggleLayout
// - merge.goToNextConflict
// - merge.goToPreviousConflict
// - merge.mixedLayout
// - merge.toggleActiveConflictInput1
// - merge.toggleActiveConflictInput2
// - mergeEditor.compareInput1WithBase
// - mergeEditor.compareInput2WithBase
// - noop
// - notebook.cancelExecution
// - notebook.cell.cancelExecution
@@ -1776,6 +1813,7 @@
// - notifications.clearAll
// - notifications.focusToasts
// - notifications.showList
// - notifications.toggleDoNotDisturbMode
// - notifications.toggleList
// - npm.debugScript
// - npm.focus
@@ -1970,8 +2008,10 @@
// - workbench.action.debug.focusProcess
// - workbench.action.debug.restartFrame
// - workbench.action.debug.reverseContinue
// - workbench.action.debug.selectDebugConsole
// - workbench.action.debug.selectRepl
// - workbench.action.debug.selectandstart
// - workbench.action.debug.showLoadedScripts
// - workbench.action.debug.stepBack
// - workbench.action.debug.terminateThread
// - workbench.action.decreaseViewHeight
@@ -2250,17 +2290,20 @@
// - workbench.action.terminal.switchTerminal
// - workbench.action.terminal.unsplit
// - workbench.action.terminal.unsplitInstance
// - workbench.action.terminal.writeDataToTerminal
// - workbench.action.toggleActivityBarVisibility
// - workbench.action.toggleAutoSave
// - workbench.action.toggleAuxiliaryBar
// - workbench.action.toggleCenteredLayout
// - workbench.action.toggleCommenting
// - workbench.action.toggleConfirmBeforeClose
// - workbench.action.toggleEditorGroupLock
// - workbench.action.toggleEditorType
// - workbench.action.toggleEditorVisibility
// - workbench.action.toggleEditorWidths
// - workbench.action.toggleKeepEditors
// - workbench.action.toggleKeybindingsLog
// - workbench.action.toggleLightDarkThemes
// - workbench.action.toggleMaximizedPanel
// - workbench.action.toggleMenuBar
// - workbench.action.toggleMultiCursorModifier
@@ -2435,8 +2478,13 @@
// - workbench.panel.repl.view.removeView
// - workbench.panel.repl.view.resetViewLocation
// - workbench.panel.repl.view.toggleVisibility
// - workbench.profiles.actions.cleanupProfiles
// - workbench.profiles.actions.createFromCurrentProfile
// - workbench.profiles.actions.createProfile
// - workbench.profiles.actions.exportProfile
// - workbench.profiles.actions.importProfile
// - workbench.profiles.actions.removeProfile
// - workbench.profiles.actions.switchProfile
// - workbench.scm.action.collapseAllRepositories
// - workbench.scm.action.expandAllRepositories
// - workbench.scm.action.repositories.setSortKey.discoveryTime
@@ -2453,12 +2501,14 @@
// - workbench.scm.repositories.resetViewLocation
// - workbench.scm.resetViewLocation
// - workbench.scm.toggleVisibility
// - workbench.sessionSync.actions.resetAuth
// - workbench.trust.configure
// - workbench.trust.manage
// - workbench.userData.actions.askToTunrOnAfterInit
// - workbench.userData.actions.openSyncBackupsFolder
// - workbench.userData.actions.signin
// - workbench.userData.actions.turningOn
// - workbench.userDataSync.actions.acceptMerges
// - workbench.userDataSync.actions.configure
// - workbench.userDataSync.actions.help
// - workbench.userDataSync.actions.manage
@@ -2497,6 +2547,8 @@
// - workbench.views.extensions.builtinProgrammingLanguageExtensions.resetViewLocation
// - workbench.views.extensions.builtinThemeExtensions.focus
// - workbench.views.extensions.builtinThemeExtensions.resetViewLocation
// - workbench.views.extensions.deprecatedExtensions.focus
// - workbench.views.extensions.deprecatedExtensions.resetViewLocation
// - workbench.views.extensions.disabled.focus
// - workbench.views.extensions.disabled.resetViewLocation
// - workbench.views.extensions.enabled.focus
Loading