This emulate's vim's <C-e> and <C-y>
for scrolling in VSCode using the macros extension.
- add the following to
settings.json
"macros": {
"scrollLineDownFaster": [
"scrollLineDown",
"scrollLineDown",
"scrollLineDown",
"scrollLineDown"
],
"scrollLineUpFaster": [
"scrollLineUp",
"scrollLineUp",
"scrollLineUp",
"scrollLineUp"
]
}
-
Install the macros extension
-
⌘K + ⌘S
to bring up Keyboard Shortcuts and search for scrollLine -
Bind
ctrl+e
tomacros.scrollLineUpFaster
&ctrl+y
tomacros.scrollLineDownFaster