Unicodemap keycodes rename (#21092)
This commit is contained in:
parent
45c9bc4e55
commit
a4ed6ad0f5
55 changed files with 358 additions and 360 deletions
|
@ -39,7 +39,7 @@ def _translate(s):
|
|||
elif re.match("^TT[0-9]{1,2}$", s): # Tn, works from TT0 to TT99
|
||||
return ("TT({0})".format(s[2:]), "{0:^7}".format(s))
|
||||
elif s in layout.uc_dict:
|
||||
return ("X("+s+")", " {0} ".format(chr(int(layout.uc_dict[s], 0))))
|
||||
return ("UM("+s+")", " {0} ".format(chr(int(layout.uc_dict[s], 0))))
|
||||
elif s in layout.qmk_dict:
|
||||
return (layout.qmk_dict[s], "{0:^7}".format(s))
|
||||
elif s == s.upper() and s.startswith("KC_"):
|
||||
|
|
|
@ -396,7 +396,7 @@ qmk_dict = {
|
|||
# One Shot Keys missing
|
||||
# Swap Hands
|
||||
"_sp_swp": "SHT(KC_SPC)",
|
||||
# Unicode support (via X()) included implicitly
|
||||
# Unicode support included implicitly
|
||||
# Switching Unicode Input Modes
|
||||
"UC_win": "UC_WINC", "UC_lnx": "UC_LINX", "UC_mac": "UC_MAC",
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue