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 using Modtap module, Peg tries to read KC.MT(KC.ESC, KC.LCTL) as two separate keys KC.MT(KC.ESC and KC.LCTL), likely because of splitting based on , identifier.
This results in two keys showing up as error, and shifting the entire layout by one key.
A fix would be to check if there is a function denoted by parens, and to ignore all commas within that parens
Note how entire layout shifted one key to the right.
Workaround:
In the GUI, add the Custom Keycode where the Err is.
Edit the layout in main.py and remove the KC.NO next to it.
Restart Peg.
The text was updated successfully, but these errors were encountered:
When using Modtap module, Peg tries to read
KC.MT(KC.ESC, KC.LCTL)
as two separate keysKC.MT(KC.ESC
andKC.LCTL)
, likely because of splitting based on,
identifier.This results in two keys showing up as error, and shifting the entire layout by one key.
A fix would be to check if there is a function denoted by parens, and to ignore all commas within that parens
Note how entire layout shifted one key to the right.
Workaround:
The text was updated successfully, but these errors were encountered: