kasecato / vscode-intellij-idea-keybindings

Port of IntelliJ IDEA key bindings for VS Code.
https://marketplace.visualstudio.com/items?itemName=k--kato.intellij-idea-keybindings
MIT License
817 stars 135 forks source link

ctrl+y overrides redo option #247

Closed RafaRioFal4699 closed 1 year ago

RafaRioFal4699 commented 2 years ago

The ctrl+y keybinding of this extension overrides the default Windows/VSCode redo option and as you know, the commands cannot be edited. How can I get the default redo command without disabling the extension?

adrianwix commented 2 years ago

and it gets worse when the keyboard is German. Y and Z are inverted.

kasecato commented 1 year ago

@adrianwix You can remove the ctrl+y settings to add this to your keybindings.json

[
    {
        "key": "ctrl+y",
        "command": "-editor.action.deleteLines",
        "when": "editorTextFocus && !editorReadonly"
    }
]