Fix keycodes, and update keymap in prep for working layers

This commit is contained in:
Kyle Brown
2018-09-22 12:36:28 -07:00
committed by Josh Klar
parent 5787731890
commit fb053b7de4
2 changed files with 15 additions and 9 deletions

View File

@@ -371,6 +371,6 @@ char_lookup = {
' ': (Keycodes.Common.KC_SPACE,),
'-': (Keycodes.Common.KC_MINUS,),
'=': (Keycodes.Common.KC_EQUAL,),
'+': (Keycodes.Common.KC_EQUAL, Keycodes.Modifiers.KC_SHIFT),
'~': (Keycodes.Common.KC_TILDE,),
'+': (Keycodes.Common.KC_EQUAL, Keycodes.Modifiers.KC_LSHIFT),
'~': (Keycodes.Common.KC_NUHS,),
}