Sublime Forum

Ctr k + ctr b

#1

CTRL K + CTRL B

We have to use this to show/hide the sidebar. Cant we do this with just CTRL + One Key?

0 Likes

#2

It’s indeed possible to customize the key binding if you’d like to. All you have to do is use Preferences > Key Bindings from the menu and look up the binding in the left hand pane that shows you the default bindings:

	{ "keys": ["ctrl+k", "ctrl+b"], "command": "toggle_side_bar" },

Then you can copy and paste it into your key bindings in the right hand pane and change the keys that trigger it to be something else.

1 Like

#3

As usual sir. you are fantastic and spot on. Thanks a ton.

1 Like

#4

Beware key clashes though, I’ve had trouble with clashing keys, esp one key commands, Eg: Alt on it’s own and Alt+some_thing
eg Alt+t defined as Tool menu and Alt+t, Alt+s, defined as “ten space” command, Alt+t won’t work at all…

Lozminda

0 Likes