diff options
Diffstat (limited to 'layouts/community/ergodox/german-manuneo/compile_keymap.py')
-rw-r--r-- | layouts/community/ergodox/german-manuneo/compile_keymap.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/layouts/community/ergodox/german-manuneo/compile_keymap.py b/layouts/community/ergodox/german-manuneo/compile_keymap.py index 9ad5c88ec..df5d42984 100644 --- a/layouts/community/ergodox/german-manuneo/compile_keymap.py +++ b/layouts/community/ergodox/german-manuneo/compile_keymap.py | |||
@@ -584,11 +584,6 @@ def unicode_macro_cases(config): | |||
584 | for macro_id, uc_hex in config['unicode_macros'].items(): | 584 | for macro_id, uc_hex in config['unicode_macros'].items(): |
585 | hi = int(uc_hex, 16) >> 8 | 585 | hi = int(uc_hex, 16) >> 8 |
586 | lo = int(uc_hex, 16) & 0xFF | 586 | lo = int(uc_hex, 16) & 0xFF |
587 | unimacro_keys = ", ".join( | ||
588 | "T({})".format( | ||
589 | "KP_" + digit if digit.isdigit() else digit | ||
590 | ) for digit in uc_hex | ||
591 | ) | ||
592 | yield UNICODE_MACRO_TEMPLATE.format( | 587 | yield UNICODE_MACRO_TEMPLATE.format( |
593 | macro_id=macro_id, hi=hi, lo=lo | 588 | macro_id=macro_id, hi=hi, lo=lo |
594 | ) | 589 | ) |