You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating shortcut macros for Atom. I discovered that when using a RegisteredAction beyond R(Key("X") causes the macro to become nonfunctional and not throw an error when loading caster.
For instance A. The command is recognized but the macro is not triggered.
A. [go to] line ": R(Key("c-g") + Pause("10") + Text("%(n)s") + Key("enter"), rdescript="Atom: Go to Line #"),
For B. The command and the macro is recognized and the macro is triggered. Everything functions as expected.
B. [go to] line ": Key("c-g") + Pause("10") + Text("%(n)s") + Key("enter"),
Using A. I've tested each "+ Pause("10")" "+ Text("%(n)s")" "+ Key("enter")" individually with Key("c-g")
Regardless of the combination or exclusion they all produce the same result as described in A.
The text was updated successfully, but these errors were encountered:
When creating shortcut macros for Atom. I discovered that when using a RegisteredAction beyond R(Key("X") causes the macro to become nonfunctional and not throw an error when loading caster.
For instance A. The command is recognized but the macro is not triggered.
A. [go to] line ": R(Key("c-g") + Pause("10") + Text("%(n)s") + Key("enter"), rdescript="Atom: Go to Line #"),
For B. The command and the macro is recognized and the macro is triggered. Everything functions as expected.
B. [go to] line ": Key("c-g") + Pause("10") + Text("%(n)s") + Key("enter"),
Using A. I've tested each "+ Pause("10")" "+ Text("%(n)s")" "+ Key("enter")" individually with Key("c-g")
Regardless of the combination or exclusion they all produce the same result as described in A.
The text was updated successfully, but these errors were encountered: