Unhide build output in Sublime Text

After starting a build in Sublime Text (Ctrl/Cmd B), a pane with the output appears.

The output pane can be hidden by ESC. Buth how do I unhide the output pane again?


Shift+esc to unhide the output terminal on Sublime.


In the latest build of Sublime Text (build 3020) there is a "Panel Switcher" in the lower left of the window.

See the icon in the bottom left. Click it and it shows a list of available output panels to open.

Panel Switcher Screenshot


How do I unhide the output pane again?

  1. Use "Tools" → "Build Results" → "Show Build Results", or

  2. Create a new shortcut key of your choice as follows:

As you can see in Packages/Default/Main.sublime-menu the command for "Show build results" is this:

{
  "command": "show_panel", 
  "args": {
    "panel": "output.exec"
  },
  "caption": "Show Build Results",
  "mnemonic": "S"
},

so a custom key binding could be this:

{ 
  "keys": ["ctrl+alt+super+r"],
  "command": "show_panel", 
  "args": {
    "panel": "output.exec"
  }
}

Source In Sublime Text 2 - reopen build output, answer by akirk