-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi there, are you asking how to modify the keymap YAML to show that, or how to do it during the automatic keymap YAML generation via parsing? In the keymap YAML, you can simply change the value to add a shifted field, e.g. instead of If you want to do this automatically during parsing, you can create a config file (see Customization), then augment the value of ...
parse_config:
...
zmk_keycode_map:
...
SQT: {tap: "'", shifted: '"'}
... You can apply the same logic for other keycodes. |
Beta Was this translation helpful? Give feedback.
Hi there, are you asking how to modify the keymap YAML to show that, or how to do it during the automatic keymap YAML generation via parsing?
In the keymap YAML, you can simply change the value to add a shifted field, e.g. instead of
- "'"
, you would use- {tap: "'", shifted: '"'}
.If you want to do this automatically during parsing, you can create a config file (see Customization), then augment the value of
SQT
in theqmk_keycode_map
orzmk_keycode_map
(depending on what you are parsing) in the configuration:You can apply the same logic for other keycodes.