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
I'm trying to run this on my MBP and I'm seeing an IllegalArgumentException while trying to parse a simple config like this from one of your examples:
;; main contains multiple manipulators;; each manipulator has a description and multiple rules;; main -> {:main [{:des "..." :rules [rule1 rule2 ...]}]};; manipulator -> {:des "..." :rules [rule1 rule2 ...]};; manipulator's rules -> [rule1 rule2 ...]
{:main [{:des"a to 1, b to 2, c to insert 1 2 3":rules [[:a:1] [:b:2] [:c [:1:2:3]]]}]}
;; or we can separate them into three manipulators;; {:main [{:des "a to 1" :rules [[:a :1]]};; {:des "b to 2" :rules [[:b :2]]};; {:des "c to insert 123" :rules [[:c [:1 :2 :3]]]}]};; in rules [:a :1] -- [<from> <to>];; it means from key a to key 1;; these keycode is just original karabiner keycode prefix with colon
While running the following command I see the error:
❯ goku -c ~/.config/karabiner/karabiner.edn
The following errors occurred while parsing your command:
Error while parsing option "-c /Users/redacted/.config/karabiner/karabiner.edn": java.lang.IllegalArgumentException: No matching field found: getPath for class java.lang.String
Any idea what I'm doing wrong? Would someone please help me with this?
Thank you!
The text was updated successfully, but these errors were encountered:
Hello,
I'm trying to run this on my MBP and I'm seeing an
IllegalArgumentException
while trying to parse a simple config like this from one of your examples:While running the following command I see the error:
Any idea what I'm doing wrong? Would someone please help me with this?
Thank you!
The text was updated successfully, but these errors were encountered: