Last active
August 22, 2024 07:30
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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