diff options
| author | QMK Bot | 2025-11-04 01:12:57 +0100 |
|---|---|---|
| committer | QMK Bot | 2025-11-04 01:12:57 +0100 |
| commit | f1ec600fac8666e5f44aaeca3364189e5a15d335 (patch) | |
| tree | 33191402c51af0b233a512531417782ba8623538 /docs/reference_configurator_support.md | |
| parent | c67e4c2caee2102ba863124bfc60caefeffecae1 (diff) | |
| parent | a9739f78681dee290ede955c02b360f5c133f783 (diff) | |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/reference_configurator_support.md')
| -rw-r--r-- | docs/reference_configurator_support.md | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/docs/reference_configurator_support.md b/docs/reference_configurator_support.md index d0824c7705..4f2ddfffe8 100644 --- a/docs/reference_configurator_support.md +++ b/docs/reference_configurator_support.md @@ -189,15 +189,25 @@ Currently, the Configurator does not support key rotation or non-rectangular key For ISO Enter keys, QMK custom is to display it as a rectangular key, 1.25u wide and 2u high, aligned so its right edge is aligned with the right edge of the alphanumeric key block. - + *A 60% keyboard in standard ISO layout, as rendered by QMK Configurator.* #### Vertically-offset keys For vertically-offset keys, place them in KLE as if they were not offset, then edit the Y-values as needed in the converted JSON file - + *An 1800-layout keyboard as rendered in Keyboard Layout Editor, without the vertical offset applied to the arrow keys.* - -*A Unix diff file, showing the changes needed to vertically-offset the arrow keys in our keyboard's JSON file.* +```diff +-{"label": "\u2191", "x", 14.25, "y": 5}, ++{"label": "\u2191", "x", 14.25, "y": 5.25}, +... +-{"label": "\u2190", "x", 13.25, "y": 6}, +-{"label": "\u2193", "x", 14.25, "y": 6}, +-{"label": "\u2192", "x", 15.25, "y": 6}, ++{"label": "\u2190", "x", 13.25, "y": 6.25}, ++{"label": "\u2193", "x", 14.25, "y": 6.25}, ++{"label": "\u2192", "x", 15.25, "y": 6.25}, +``` +*A diff showing the changes needed to vertically-offset the arrow keys in our keyboard's JSON file.* |