Closed sanket143 closed 3 years ago
Currently, we can redo with Ctrl + Y. It'll be great to have Ctrl + Shift + Z to redo since it's much more intuitive and vscode also uses it so it'll be helpful for those who are coming from vscode.
Ctrl + Y
Ctrl + Shift + Z
Put this in your init.lua
init.lua
keymap.add { ["ctrl+shift+z"] = { "doc:redo" }, }
Reload the user module and now you have ctrl+shift+z support.
ctrl+shift+z
got it thanks
Currently, we can redo with
Ctrl + Y
. It'll be great to haveCtrl + Shift + Z
to redo since it's much more intuitive and vscode also uses it so it'll be helpful for those who are coming from vscode.