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
819 stars 136 forks source link

`Ctrl+W` 's ability to expand the selection area needs to be enhanced. #182

Open lartpang opened 4 years ago

lartpang commented 4 years ago

This extension is great. Thank you for your contribution.

But I found that there are still some deficiencies. In IDEA, the selection of regions should be gradually increased, rather than including the entire row directly at once.

kasecato commented 4 years ago

@lartpang Thanks. That is true. I'm using the VSCode standard features editor.action.smartSelect.grow and their behavior seems to be different from IntelliJ. There's nothing I can do about it at this time 😭

lartpang commented 4 years ago

Well, thank you anyway.

wuzhefang commented 4 years ago

same question, pity and in my vscode, ctrl+w is close window. not the editor.action.smartSelect.grow

lartpang commented 4 years ago

same question, pity and in my vscode, ctrl+w is close window. not the editor.action.smartSelect.grow

You can modify your keymap. ⌨️

kasecato commented 7 months ago

ctrl+w is working, but still different from IntelliJ

vyach-vasiliev commented 6 months ago

I added this to ">Preferences: Open Keyboard Shortcuts (ctrl+k, ctrl+s) and now the selection works like in JetBrains IDEA 🎉

    {
        "key": "ctrl+w",
        "command": "editor.action.addSelectionToNextFindMatch",
        "when": "editorFocus && !editorHasSelection"
    },