Sublime Forum

Automatically display build output on new build

#1

I am transitioning from VSCode/PyCharm to Sublime Text and one of the issue (among many other) I’m running in to is that my build logs are not showing automatically, do I need a specific setting set to achieve that,

Any help would be appreciated .

Thanks.

0 Likes

#2

The setting for this is the following one, but it defaults to being turned on:

	// Shows the Build Results panel when building. If set to false, the Build
	// Results can be shown via the Tools/Build Results menu.
	"show_panel_on_build": true,

As such when you run a build the panel should open and show you what the program is doing as it runs.

0 Likes

#3

@OdatNurd you’re awesome, thank you. I was going crazy, what did I do. it remind me to read the doc/config more carefully. but thank you once again.

1 Like