Sublime Forum

Super+` just quit working

#1

Hi, I have this key binding:

{ "keys": ["super+\`"], "command": "toggle_side_bar" }  

And it just quit working.
This is the output of the console, so they keystroke is getting to Sublime, but it doesn’t work:

>>> sublime.log_input(True)
key evt: super+\`  

What can be happening?
I’m using MacOS, so super is command.

0 Likes

#2

If you use sublime.log_commands (True) does it tell you that it’s trying to run the toggle_side_bar command?

Sublime automatically hides the sidebar (and will not allow you to toggle it) if there is no reason for it to be open. The sidebar displays files and folders in your project and also the list of currently open files (if you turn that option on).

Thus if you have no files in your project while simultaneously having the option to display open files turned off, you can’t have the sidebar open and the toggle command will not do anything, You will notice that in this situation to show the sidebar in View > Sidebar is disabled.

2 Likes

#3

Oh sorry, you’re right, I had opened a new window with no documents. Thank you very much!

1 Like