Skip to content

Instantly share code, notes, and snippets.

@trasparente
Last active February 5, 2026 11:13
Show Gist options
  • Select an option

  • Save trasparente/5c5ec961023af8f45ff16433da5b173c to your computer and use it in GitHub Desktop.

Select an option

Save trasparente/5c5ec961023af8f45ff16433da5b173c to your computer and use it in GitHub Desktop.
VSCode

Find Selection : Ctrl+D

Toggle Line Comment : Ctrl+/

Split Down Editor: : Ctrl+K Ctrl+\

Toggle Maximize Editor Group : Ctrl+K Ctrl+M

{
  "key": "alt+right",
  "command": "cursorWordEndRight",
  "when": "textInputFocus && !accessibilityModeEnabled"
}

Here's a copy of my keybindings.json file for VS Code if you want to take a look at the rest of my keybindings:

{
  key: "cmd+d",
  command: "editor.action.deleteLines",
  when: "editorTextFocus"
},
{
  key: "cmd+t",
  command: "workbench.action.quickOpen"
},
{
  key: "cmd+[",
  command: "workbench.action.navigateBack"
},
{
  key: "cmd+]",
  command: "workbench.action.navigateForward"
},
{
  key: "shift+cmd+b",
  command: "workbench.action.tasks.runTask"
},
{
  key: "alt+`",
  command: "workbench.action.terminal.focusPrevious"
},
{
  key: "ctrl+cmd+a",
  command: "-extension.align",
  when: "editorTextFocus"
},
{
  key: "cmd+\\",
  command: "workbench.files.action.showActiveFileInExplorer"
},
{
  key: "cmd+l",
  command: "workbench.action.gotoLine"
}
Command Keybinding
**Find Selection** Ctrl+D
Toggle Line **Comment** Ctrl+/
**Split Down** Editor Ctrl+K Ctrl+\
Toggle **Maximize Editor** Group Ctrl+K Ctrl+M
Cursor **Word End** Alt+Arrow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment