-
I want to recreate this behaviour in VSCodeVim. nnoremap <C-d> <C-d>zz
nnoremap <C-u> <C-u>zz |
Beta Was this translation helpful? Give feedback.
Answered by
quackerex
Mar 29, 2024
Replies: 1 comment
-
Add these to normalModeKeyBindingsNonRecursive {
"before": ["<C-u>"],
"after": ["<C-u>", "z", "z"]
},
{
"before": ["<C-d>"],
"after": ["<C-d>", "z", "z"]
}, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
quackerex
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add these to normalModeKeyBindingsNonRecursive