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
thanks for all the effort you have put into your great software!
I have an existing KMK configuration for a retro computer keyboard that I am trying to port to POG. The idea is to make it easier for end users to modify the key mapping depending on their use cases. I have a few keys that need special handling due to how the keyboard is designed.
For example, to get Delete on this old keyboard you are supposed to press Shift + Backspace. To get KMK to send a normal Delete key press I hade to use combos - otherwise it would either send a delete key with an extra Shift, or no Shift when I wanted it for other keys.
The code that ended up doing what I want looks like this:
combos.combos= [
# Add DEL to BackspaceSequence((KC.LSFT, KC.BSPC), KC.DEL, fast_reset=False),
Sequence((KC.RSFT, KC.BSPC), KC.DEL, fast_reset=False),
]
Is there a way to configure the same feature with POG? If it isn't, could it please be added?
The text was updated successfully, but these errors were encountered:
Hello,
thanks for all the effort you have put into your great software!
I have an existing KMK configuration for a retro computer keyboard that I am trying to port to POG. The idea is to make it easier for end users to modify the key mapping depending on their use cases. I have a few keys that need special handling due to how the keyboard is designed.
For example, to get
Delete
on this old keyboard you are supposed to pressShift
+Backspace
. To get KMK to send a normalDelete
key press I hade to use combos - otherwise it would either send a delete key with an extraShift
, or noShift
when I wanted it for other keys.The code that ended up doing what I want looks like this:
Is there a way to configure the same feature with POG? If it isn't, could it please be added?
The text was updated successfully, but these errors were encountered: