For example, this works:
Code
another = {
['Ctrl+1'] = 'input /equipset 2'
}
Code
return {
['Ctrl+1'] = 'input /equipset 1',
['Ctrl+2'] = another
}
But, I don't want to use up 2 key combinations on selecting different sets of key bindings.
This doesn't work
['Ctrl+Shift+2'] = another
The UI captures the keystroke, instead of yush, and selects my 2nd macro set.
So maybe my question amounts to how can I bind the keystroke Ctrl+Shift+2 etc. in yush?
