Hi,
I am trying to create a keybinding that allows me to move my cursor (i.e focus ) to group 0, when the focus is on the console.
The first keybinding works for the sidebar tree, but the second one ofcourse wrong.
where can I find all the list on possible values for “operands”, etc ?
{
"keys": [","],
"command": "focus_group",
"args": {"group": 0},
"context": [
{"key": "control", "operand": "sidebar_tree"}
]
},
The below is a sample of what my aim is, but I am tough out of luck trying to figure out a solution.
{
"keys": ["f9"],
"command": "focus_group",
"args": {"group": 0},
"context": [
{"operand": "console"}
]
},
One important caveat is that, when my focus is group 0, f9 does something else, the keybinding for F9 should only work when the focus is on the console.
Thanks for your help.