KeyMan Expression
I am creating an expression using a List.
I'm thinking..
It is something like stack ~!?
Level 1
Shortcut(Keys pressed at once)
- SHIFT + SHIFT + SHIFT
[KeyMan.Shift, KeyMan.Shift, KeyMan.Shift]
Level 2
Command(Keys pressed sequentially)
- CTRL > SHIFT > 1 > 2
[[KeyMan.Ctrl], [KeyMan.Shift], [1], [2]]
Shortcut(Keep pressing the key) + Command
- SHIFT + (CTRL > 1 > 2)
[KeyMan.Shift, [KeyMan.Ctrl], [1], [2]]
- (SHIFT + CTRL) > SHIFT + 1
[[KeyMan.Shift, KeyMan.Ctrl], KeyMan.Shift, [1]]
Level 3
Shortcut + Command and Shortcut + Command
- SHIFT + (1 > 2) > CTRL + (3 > 4)
[['shift', [1], [2]], ['ctrl', [3], [4]]]
- G + ( (SHIFT + (1 > 2) > CTRL + (3 > 4)) )
['G', ['shift', [1], [2]], ['ctrl', [3], [4]]]
KeyMan Expression
I am creating an expression using a List.
I'm thinking..
It is something like stack ~!?
Level 1
Shortcut(Keys pressed at once)Level 2
Command(Keys pressed sequentially)Shortcut(Keep pressing the key) +CommandLevel 3
Shortcut + CommandandShortcut + Command