Sublime Forum

Hotkey for expand selection to block

#1

Hi

I’ve been trying to create a hotkey for expand selection to block with no luck, I am using Sublime 4. Any idea?

Thanks in advance

{“keys”: “ctrl+shift+b”], “command”: “expand_selection”, “args”: {“to”: “block”} }

0 Likes

#2

You may want to try this one. God knows, why sublimehq didn’t re-use normal expand_selection command, but invented a new one, but a working binding is…

	{"keys": ["ctrl+shift+b"], "command": "expand_selection_to_paragraph" },
1 Like

#3

Excelent! thanks

0 Likes