Python Sublime Text show / hide output window

I am running Python code in Sublime - it works great.

The only remark that I noticed is that when the code is executed, if I, for example, search in the code, the output window disappears, and I did not find a way to return it.

How to show / hide python output window?

+4
source share
2 answers

To display the assembly results pane, select . This menu also has options for moving forward and backward in the history of build results. Tools -> Build Results -> Show Build Results

+10
source

Try using the plugin for the interpreter. For example, REPL - https://github.com/wuub/SublimeREPL .

0

All Articles