vscode-emacs-friendly
vscode-emacs-friendly copied to clipboard
Redo Shortcut
What is the remapped shortcut for redo? I can't seem to find it, it's listed in the conflicts, but it's not remapped. I don't think it works the same way as it does on emacs right? https://stackoverflow.com/questions/3527142/how-do-you-redo-changes-after-undo-with-emacs
I have slove the issue, seta new keybinding in default redo action "ctrl + y",
put this code in keybindings. json { "key": "ctrl+shift+/", "command": "redo", "when": "textInputFocus && !editorReadonly" }, { "key": "ctrl+y", "command": "-redo", "when": "textInputFocus && !editorReadonly" }