diff options
Diffstat (limited to 'docs/keycodes.md')
-rw-r--r-- | docs/keycodes.md | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/docs/keycodes.md b/docs/keycodes.md index 91578414d..c0e6aa5c6 100644 --- a/docs/keycodes.md +++ b/docs/keycodes.md | |||
@@ -450,7 +450,15 @@ This is a reference only. Each group of keys links to the page documenting their | |||
450 | 450 | ||
451 | ## [Unicode Support](feature_unicode.md) | 451 | ## [Unicode Support](feature_unicode.md) |
452 | 452 | ||
453 | |Key |Description | | 453 | |Key |Aliases |Description | |
454 | |-------|---------------------------------------------------------------------------| | 454 | |----------------------|---------|----------------------------------------------------------------| |
455 | |`UC(c)`|Send Unicode code point `c` (`UNICODE_ENABLE`) | | 455 | |`UC(c)` | |Send Unicode code point `c` | |
456 | |`X(i)` |Send Unicode code point at index `i` in `unicode_map` (`UNICODEMAP_ENABLE`)| | 456 | |`X(i)` | |Send Unicode code point at index `i` in `unicode_map` | |
457 | |`XP(i, j)` | |Send Unicode code point at index `i`, or `j` if Shift/Caps is on| | ||
458 | |`UNICODE_MODE_FORWARD`|`UC_MOD` |Cycle through selected input modes | | ||
459 | |`UNICODE_MODE_REVERSE`|`UC_RMOD`|Cycle through selected input modes in reverse | | ||
460 | |`UNICODE_MODE_OSX` |`UC_M_OS`|Switch to macOS input | | ||
461 | |`UNICODE_MODE_LNX` |`UC_M_LN`|Switch to Linux input | | ||
462 | |`UNICODE_MODE_WIN` |`UC_M_WI`|Switch to Windows input | | ||
463 | |`UNICODE_MODE_BSD` |`UC_M_BS`|Switch to BSD input (not implemented) | | ||
464 | |`UNICODE_MODE_WINC` |`UC_M_WC`|Switch to Windows input using WinCompose | | ||