Updated doc to show the keys usage

This commit is contained in:
Syed Hussaini 2022-04-08 22:34:24 -05:00 committed by Kyle Brown
parent 0cb69651c8
commit 142a15e175

View File

@ -10,4 +10,12 @@ cg_swap = CgSwap()
# cg_swap = CgSwap(cg_swap_enable=True) # cg_swap = CgSwap(cg_swap_enable=True)
keyboard.modules.append(cg_swap) keyboard.modules.append(cg_swap)
keyboard.keymap = [
[
KC.CG_SWAP, # swap ctrl and gui
KC.CG_NORM, # unswap ctrl and gui
KC.CG_TOGG, # toggles ctrl and gui swap
],
]
``` ```