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
813 stars 135 forks source link

toggle comment command wrong shortcut #294

Closed goshander closed 11 months ago

goshander commented 1 year ago

current command for toggle line comment use wrong shortcut

{
    "key": "ctrl+/",
    "command": "editor.action.commentLine",
    "when": "editorTextFocus && !editorReadonly"
}

need to be more independent of user locale and keyboard layout

{
    "key": "ctrl+[Slash]",
    "command": "editor.action.commentLine",
    "when": "editorTextFocus && !editorReadonly"
}
kasecato commented 11 months ago

I released it on v1.5.10 now. Please check it

nyurik commented 11 months ago

I just tried it using Dvorak keyboard layout, and ctrl+z is broken :( I filed #307