Last active
October 23, 2020 18:56
-
-
Save yokodev/bf354441e7f957620d28492ab4641f7f to your computer and use it in GitHub Desktop.
Ctrl UP Down VSCodium
This file contains hidden or 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
https://github.com/microsoft/vscode/issues/2091#issuecomment-346703719 | |
Add this to the keyboard shortcut keys | |
{ | |
"key": "ctrl+up", | |
"command": "editorScroll", | |
"when": "editorTextFocus", | |
"args": | |
{ | |
"to": "up", | |
"by": "line", | |
"revealCursor": true | |
} | |
}, | |
{ | |
"key": "ctrl+down", | |
"command": "editorScroll", | |
"when": "editorTextFocus", | |
"args": | |
{ | |
"to": "down", | |
"by": "line", | |
"revealCursor": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment