Skip to content

Instantly share code, notes, and snippets.

@pH-7
Last active August 22, 2024 07:30
Show Gist options
  • Save pH-7/f838cdddc94fe6dac7721073111456d0 to your computer and use it in GitHub Desktop.
Save pH-7/f838cdddc94fe6dac7721073111456d0 to your computer and use it in GitHub Desktop.
Productivity Add Custom VS Code Keybindings. Move Cursor Up/Down by 2 Lines
[
{
"key": "alt+up",
"command": "cursorMove",
"when": "textInputFocus",
"args": {
"to": "up",
"by": "line",
"value": 2
}
},
{
"key": "alt+down",
"command": "cursorMove",
"when": "textInputFocus",
"args": {
"to": "down",
"by": "line",
"value": 2
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment