Add CharShift docs for Chrysalis

Until Chrysalis knows about CharShift keys, they can only be added to a
Chrysalis keymap by using a custom key code.  This adds a section to the
CharShift docs giving the offset needed to reference those keys.

Signed-off-by: Michael Richters <gedankenexperimenter@gmail.com>
pull/1086/head
Michael Richters 3 years ago
parent d3bcd45c29
commit 926a5f6f5e
No known key found for this signature in database
GPG Key ID: 1288FD13E4EEF0C0

@ -58,6 +58,25 @@ preprocessor macro, which takes an integer argument, referring to items in the
`CS(2)` will output `(` when pressed without `shift`, and `[` if `shift` is `CS(2)` will output `(` when pressed without `shift`, and `[` if `shift` is
being held. being held.
## Adding CharShift keys in Chrysalis
As of this writing, CharShift keys can't be defined in Chrysalis; they can only
be defined in a custom sketch (see above). This doesn't mean that you can't use
them in Chrysalis-defined keymaps, however. To add a CharShift key in
Chrysalis, select `Custom key code`, and add the offset `53631` to the index number of the
CharShift key.
In other words, where you would use `CS(2)` in a Kaleidoscope sketch, you would
need to use `53633` (`53631 + 2`) as the custom key code in Chrysalis. Any
CharShift keys referenced in this way still need to be defined in a custom
Kaleidoscope sketch (see above), but they can still be used in a Chrysalis
keymap.
In general, the formula for the Chrysalis custom key code corresponding to the
CharShift key with index `N` is:
`CS(N)``53631 + N`
## Further reading ## Further reading
Starting from the [example][plugin:example] is the recommended way of getting Starting from the [example][plugin:example] is the recommended way of getting

Loading…
Cancel
Save