Sublime Forum

Key binding for "Show Build Results"

#1

I’m trying to bind to the “Show Build Results” so that I can bring them up with the keyboard. I’ve tried:

{ "keys": "ctrl+alt+super+r"], "command": "show_build_results" }

and

{ "keys": "ctrl+alt+super+r"], "command": "toggle_build_results" }

and a few other show_panel iterations with no luck. Any ideas, or am I off base with this idea?

Thanks!

0 Likes

#2

Outstanding, thank you. I couldn’t find the panel name anywhere!

0 Likes

#3

To find the corresponding commands for any of the menu items, take a look through the Packages/Default/Main.sublime-menu file

0 Likes

#4

Even better. Thanks for the direction!

0 Likes

#5

this is worked perfectly for sublime text 3 either
“keys” : “ctrl+shift+b”], “command” : “show_panel” , “args” : {“panel”: “output.exec”}

3 Likes

#6

With proper formatting for copy&paste (mind the , at the end):
{ "keys" : ["alt+b"], "command" : "show_panel" , "args" : {"panel": "output.exec"}},

0 Likes