✏️

my vscode keybindings.json

に公開
[
  {
    "key": "ctrl+;",
    "command": "workbench.action.terminal.focus"
  },
  {
    "key": "ctrl+;",
    "command": "workbench.action.focusFirstEditorGroup",
    "when": "terminalFocus"
  },
  {
    "key": "ctrl+shift+cmd+k",
    "command": "workbench.action.moveEditorToRightGroup"
  },
  {
    "key": "ctrl+shift+cmd+l",
    "command": "workbench.action.splitEditor"
  },
  {
    "key": "ctrl+alt+cmd+[IntlYen]",
    "command": "-workbench.action.splitEditor"
  },
  {
    "key": "ctrl+shift+cmd+j",
    "command": "workbench.action.moveEditorToLeftGroup"
  },
  {
    "key": "ctrl+shift+cmd+[Semicolon]",
    "command": "workbench.action.terminal.split",
    "when": "terminalFocus && terminalProcessSupported || terminalFocus && terminalWebExtensionContributedProfile"
  },
  {
    "key": "ctrl+alt+cmd+[IntlYen]",
    "command": "-workbench.action.terminal.split",
    "when": "terminalFocus && terminalProcessSupported || terminalFocus && terminalWebExtensionContributedProfile"
  },
  {
    "key": "ctrl+shift+cmd+a",
    "command": "workbench.action.toggleEditorWidths"
  },
  {
    "key": "ctrl+shift+[Minus]",
    "command": "workbench.action.navigateForward",
    "when": "canNavigateForward"
  },
  {
    "key": "ctrl+[IntlRo]",
    "command": "-workbench.action.navigateForward",
    "when": "canNavigateForward"
  }
]

Discussion