How can I toggle showing the build results in the sourcecode?
Show/Hide build results
You can create a simple keybinding for it
{
"keys": ["shift+escape"],
"command": "show_panel",
"args": {
"panel": "output.exec",
"toggle": true
},
},
0 Likes
DirkEibach
#3
My question is not about the output panel but about the annotations shown in the sourcecode.
0 Likes
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