Skip to content

Instantly share code, notes, and snippets.

@yokodev
Last active October 23, 2020 18:56
Show Gist options
  • Save yokodev/bf354441e7f957620d28492ab4641f7f to your computer and use it in GitHub Desktop.
Save yokodev/bf354441e7f957620d28492ab4641f7f to your computer and use it in GitHub Desktop.
Ctrl UP Down VSCodium
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