diff options
Diffstat (limited to 'keyboards/signum/3_0/elitec/keymaps/default/layout.py')
| -rw-r--r-- | keyboards/signum/3_0/elitec/keymaps/default/layout.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/keyboards/signum/3_0/elitec/keymaps/default/layout.py b/keyboards/signum/3_0/elitec/keymaps/default/layout.py index bc744593b..5a796c862 100644 --- a/keyboards/signum/3_0/elitec/keymaps/default/layout.py +++ b/keyboards/signum/3_0/elitec/keymaps/default/layout.py | |||
| @@ -1,11 +1,9 @@ | |||
| 1 | from sortedcontainers import SortedDict | ||
| 2 | |||
| 3 | # Add all used Unicode symbols to this list. | 1 | # Add all used Unicode symbols to this list. |
| 4 | # The key (e.g. "SNEK") is used in keymap.c for "enum", "unicode_map" and "keymaps", so it needs to be a valid C variable name. | 2 | # The key (e.g. "SNEK") is used in keymap.c for "enum", "unicode_map" and "keymaps", so it needs to be a valid C variable name. |
| 5 | # The key is also used in this file to define the layout, so use recognizeable names. | 3 | # The key is also used in this file to define the layout, so use recognizeable names. |
| 6 | # The value (e.g. "0x1f40d") is used in keymap.c for "unicode_map" and to automatically generate the "ASCII"-art comments. | 4 | # The value (e.g. "0x1f40d") is used in keymap.c for "unicode_map" and to automatically generate the "ASCII"-art comments. |
| 7 | # When adding new Unicode names, use "0x1f40d" until you looked up the correct Unicode code point. | 5 | # When adding new Unicode names, use "0x1f40d" until you looked up the correct Unicode code point. |
| 8 | uc_dict = SortedDict({ | 6 | uc_dict = { |
| 9 | "SNEK": "0x1f40d", ## Error | 7 | "SNEK": "0x1f40d", ## Error |
| 10 | ## qwertz | 8 | ## qwertz |
| 11 | "ACUTE": "0x00b4", | 9 | "ACUTE": "0x00b4", |
| @@ -329,7 +327,7 @@ uc_dict = SortedDict({ | |||
| 329 | "NOT_PARA": "0x2226", | 327 | "NOT_PARA": "0x2226", |
| 330 | "TIMES_OP": "0x2297", | 328 | "TIMES_OP": "0x2297", |
| 331 | "NOT_DIV": "0x2224" | 329 | "NOT_DIV": "0x2224" |
| 332 | }) | 330 | } |
| 333 | 331 | ||
| 334 | # Add all used Keycodes to this list. | 332 | # Add all used Keycodes to this list. |
| 335 | # The key (e.g. "a") is used in keymap.c to automatically generate the comments. The first 7 chars will show as a keycap legend. | 333 | # The key (e.g. "a") is used in keymap.c to automatically generate the comments. The first 7 chars will show as a keycap legend. |
