Hello, I can set up hotkey for showing up output (build) panel, i.e.:
{ “keys” : “super+backquote”], “command” : “show_panel” , “args” : {“panel”: “output.exec”, “toggle”: true } }
But the toggling not working for me. Is there any solution?
Hello, I can set up hotkey for showing up output (build) panel, i.e.:
{ “keys” : “super+backquote”], “command” : “show_panel” , “args” : {“panel”: “output.exec”, “toggle”: true } }
But the toggling not working for me. Is there any solution?
Can confirm, the toggle argument doesn’t seem to do anything.
Instead, you can use this:
// Toggle exec output
{ "keys": "ctrl+f4"], "command": "show_panel", "args": {"panel": "output.exec"} },
{ "keys": "ctrl+f4"], "command": "hide_panel", "args": {"panel": "output.exec"},
"context":
{ "key": "panel", "operand": "output.exec" }
]
},