Jan
Jan

Reputation: 1479

Is it possible to reopen running Sublime command console without hitting ctrl+B again (to prevent a new start)?

I run a code in sublime command console but accidentally pressed ctrl+f to find some text in the code. So the command console is replaced by search box. How can I make command console appear again without hitting ctrl+B as it will start a new code running? The code is run so far, I just want to continue it and need to see the progress is printed (I have the print line in the code) in console?

Upvotes: 4

Views: 154

Answers (1)

r-stein
r-stein

Reputation: 4847

Just select Tools > Build Results > Show Build Results. You can also add a keybinding for it. E.g.

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

Upvotes: 7

Related Questions