Code: Select all
{ctrl}{alt}{n}::
{ctrl}{alt}n::
{Lctrl}{Lalt}n::
{[...]}:: doesn't seems so hard for the lexer ? Also add the "Down" for consistence with Up (but optional).
For example a {ctrl}{Lalt}{n up}:: hotkey label is very pure and understandable and will easily trigger by the hook with condition "(Lctrl|Rctrl) && (Lalt) && (n_Up)"
Will be a good gift to noob, sincerely. I don't like to have two ways to write a code but I think it is more intelligent than the actual solution.
Other thing, we already have an half solve, but it is not logic because that work for only two keys, syntax are different , no {} , and && must be prefer to & for add conditional things (hold v2 logic), so a bad sample:
Code: Select all
LCtrl & LAlt & n up::
msgbox % a_thishotkey
return