5

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?

3 Answers 3

4

Shift+esc to unhide the output terminal on Sublime.

6

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

1
  • Good answer. Note that plugins, such as Sublime SFTP automatically append themselves to this context menu. Commented Apr 3, 2017 at 11:38
4

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

2
  • This is also available via the menu: Tools → Build Results → Show Build Results
    – MattDMo
    Commented Jun 23, 2016 at 17:23
  • Shortcut works perfectly! Thanks!
    – Ation
    Commented Aug 14, 2019 at 10:20

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .