Sublime Forum

How to get the console view? find_output_panel('console') returns None

#1

The closest thread I found was this:

I would like to change the console font size, independent of the window global font-size:
image

The only way I can change the console font size is by changing the global settings.

For now, I opened an issue on the Core Issue Tracker:

  1. https://github.com/SublimeTextIssues/Core/issues/2929 window.run_command( “show_panel”, { “panel”: “console” } ) window.find_output_panel( "console" ) returns None instead of the Console output view
0 Likes

#2

Not all panels are output panels. In particular, the console is not an output panel. window.find_output_panel('console')) should find the output panel whose panel name is output.console . There is no such output panel, so it returns None .

1 Like