vscode editor double-clicking on words goes from single word selection to all line instead of gradually expanding the selection scope from word to text including quotations to full line. The bracket select extension does it properly with CTRL+ALT+A keybinding to get the right selection behavior using the "bracket-select.select-include" command.
Is there a way to assign the keybinding to double-clicking so its easy to use and not have to keep doing CTRL+ALT+A
?
I tried this in keybindings.json but didnt work
[{
"key": "doubleClick",
"command": "bracket-select.select-include",
"when": "editorTextFocus && editorHasSelection"
}
]