I want to use 3 keys for handling the output pane (the one displaying the output of a build command):
F5 => Build
F6 => Cancel the build
F8 => Hide/Show the build output panel - so it toggles it, without clearing the data if it’s just toggled off.
These work for F5/F6:
{ "keys": "f5"], "command": "build" },
{ "keys": "f6"], "command": "exec", "args": {"kill": true} },
I’ve tried searching for how to implement toggling the output panel but with no luck. Help?