How to bind the key F7 to:
- Show the last build results when they are hidden
- Build when the build results are show
Something like this
{ "keys" : ["F7"], "command" : "show_panel" , "args" : { "panel": "output.exec" }, "context":
[
{ "panel": "output.exec", "operator": "equal", "operand": false },
]
},
{ "keys" : ["F7"], "command" : "build", "context":
[
{ "panel": "output.exec", "operator": "equal", "operand": true },
]
},