Sublime Forum

Option+Shift+Right Arrow

#1

Same question as CTRL+SHIFT+RIGHT behavior

How can I change the behaviour for Option+Shift+Right?

This is what I need:
21%20AM

I cant post the screenshot of the current behaviour as Im a new user but it selects the word “Bar” as well which I don’t like.

This is currently stopping me from using Sublime :frowning:

Thanks for any help/input/hint(s) :slight_smile:
Matt

0 Likes

#2

Second post (reply) to add the missing screenshot which I can’t add to the original question.

Current behaviour:
28%20AM

0 Likes

#3

Can you try if this keybinding works ? Place this in your User keybindings. (This will override the default ctrl+shift+right)

{ 
    "keys": ["ctrl+shift+right"], 
    "command": "move", 
    "args": {"by": "subwords", "forward": true, "extend": true, "word_begin": true} 
},
0 Likes

#4

You rock! This works!

Thank you so much! :slight_smile:

0 Likes