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

20,237

Solution 1

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

Solution 2

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

Share:
20,237
phocks
Author by

phocks

Stuff

Updated on February 13, 2022

Comments

  • phocks
    phocks over 2 years

    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?

  • ruffin
    ruffin almost 6 years
    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"
  • mohammad mobasher
    mohammad mobasher over 2 years
    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.