vscode-emacs-friendly icon indicating copy to clipboard operation
vscode-emacs-friendly copied to clipboard

Redo Shortcut

Open sickerin opened this issue 6 years ago • 1 comments

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

sickerin avatar Jun 01 '18 13:06 sickerin

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" }

Clloz avatar Jun 27 '18 11:06 Clloz