We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ctrl+Right behaves like sublime, it goes to the end of the current word.
VS (and other Windows editors such as notepad, word) goes to the beginning of the next word.
To satisfy both camps we should add an editor option to control this behavior.
The text was updated successfully, but these errors were encountered:
It would be great with an option for Ctrl+Left too for the behavior mentioned in #943
Sorry, something went wrong.
78e40b8
To control this behaviour and get VS-style Ctrl+Right, please edit your keybindings.json and add:
keybindings.json
{ "key":"ctrl+right", "command":"cursorWordStartRight", "when":"editorTextFocus" } { "key":"ctrl+shift+right", "command":"cursorWordStartRightSelect", "when":"editorTextFocus" }
This will overwrite the defaults:
{ "key":"ctrl+right", "command":"cursorWordEndRight", "when":"editorTextFocus" } { "key":"ctrl+shift+right", "command":"cursorWordEndRightSelect", "when":"editorTextFocus" }
Please also see #832 for getting VS-style Ctrl+Delete.
bpasero
No branches or pull requests
Ctrl+Right behaves like sublime, it goes to the end of the current word.
VS (and other Windows editors such as notepad, word) goes to the beginning of the next word.
To satisfy both camps we should add an editor option to control this behavior.
The text was updated successfully, but these errors were encountered: