Sublime Forum

Show/Hide build results

#1

How can I toggle showing the build results in the sourcecode?

0 Likes

#2

You can create a simple keybinding for it

{
	"keys": ["shift+escape"],
	"command": "show_panel",
	"args": {
		"panel": "output.exec",
		"toggle": true
	},
},
0 Likes

#3

My question is not about the output panel but about the annotations shown in the sourcecode.

0 Likes

#4

You can use an option hide_phantoms_only with build files, which can take a boolean value true or false. Set it to true to hide build result phantoms. By default, it’s false.

But I don’t think the build results phantoms are togglable,

0 Likes