Sublime Forum

[Fixed] Keybind for showing Build Output, Cancel Build

#1

I’m on OS X, running Sublime 2, build 2210 and am trying to bind a key to show the build output window.

These doesn’t work (and other alternatives I’ve tried).

I’m trying to bind a key to show the build output here, nothing seems to work:

{ "keys": "super+ctrl+o"], "command": "show_panel", "args": {"panel": "output"} },

# Attempt to bind a key to cancel a build in progress. 
{ "keys": "ctrl+c"], "command": "terminate" },

Is there some special sauce I’m missing?

0 Likes

Keyboard shortcut for Tools->Build Results->Show Build Resul
#2

The name of the build output panel is “output.exec”.
I have this in my user keybinding settings

    { "keys": "super+shift+b"], "command": "show_panel", "args": {"panel": "output.exec", "toggle": true} },

The command for killing the build (as can be seen by opening /Default/Main.sublime-menu) is not terminate. Try this:

  { "keys": "ctrl+c"], "command": "exec", "args": {"kill": true}}
0 Likes

#3

Thanks, both binds work fine!

0 Likes