How do I hide the bottom console text output area in Sublime Text 3?
Asked Answered
A

3

33

This is probably really simple, but it's frustrating me so much. I'm using Sublime Text 3. Sometimes my plugins output code to a little window at the bottom like this:

enter image description here

And I can't hide it no matter what I try. The only way I can get rid of it is by closing the program and opening it again. Does anyone know how to close this?

Alkahest answered 8/4, 2015 at 23:43 Comment(4)
I believe it's ctrl + `, or View > Hide ConsoleVaccination
@Vaccination I had to push it twice, but that seemed to work!Alkahest
What OS are you using? On OSX, simply pressing esc closes the console.Hondo
@Hondo I'm on Windows 8. I just tried esc and yes, that works. So simple, I knew it. Thanks anyway. If only they had a little cross in the corner.Alkahest
V
80

Just have to click in the console and simply press esc.

Or to show and hide the console use ctrl + `

Or toggle menu View > Show/Hide Console

Vaccination answered 8/4, 2015 at 23:49 Comment(1)
Also note: In Sublime Text 3, open Preferences > Key Bindings - User, and put this in there: { "keys": ["ctrl+f1"], "command": "show_panel", "args": {"panel": "console", "toggle": true} }. You can see all the bindings in the Key Bindings - Default mcissel"Monometallic
T
1

In my case, Esc button is working to remove the side bar(terminal/console bar).

Titrant answered 11/2, 2022 at 17:12 Comment(1)
As it’s currently written, your answer is unclear. Please edit to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers in the help center.Ideation
P
1

In the preferences set: "show_panel_on_build": false

And if you want to view the output of the build, press the: Shift + Esc

Parlin answered 27/4, 2023 at 7:53 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.