summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2023-10-09 22:17:19 +0000
committerQMK Bot <hello@qmk.fm>2023-10-09 22:17:19 +0000
commit0e5f7ac3ba8320299d52ccb38e3941c4e2b0d4ce (patch)
tree7c62e320b370a307936bd2e417c96104c1ee7468 /docs
parent81d69a5798e4cebf75f7c6b5ab16c5ecb19f2ae2 (diff)
parent509a2b40b798fd79a9d78b65e4daeb78cecf17ea (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs')
-rw-r--r--docs/feature_unicode.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/feature_unicode.md b/docs/feature_unicode.md
index 341084f926..2c6d2ef002 100644
--- a/docs/feature_unicode.md
+++ b/docs/feature_unicode.md
@@ -140,7 +140,7 @@ To set the list of enabled input modes, add the `UNICODE_SELECTED_MODES` define
```c
#define UNICODE_SELECTED_MODES UNICODE_MODE_LINUX
// or
-#define UNICODE_SELECTED_MODES UNICODE_MODE_MAC, UNICODE_MODE_WINCOMPOSE
+#define UNICODE_SELECTED_MODES UNICODE_MODE_MACOS, UNICODE_MODE_WINCOMPOSE
```
These modes can then be cycled through using the `UC_NEXT` and `UC_PREV` keycodes. You can also switch to any input mode, even if it is not specified in `UNICODE_SELECTED_MODES`, using their respective keycodes.
@@ -151,7 +151,7 @@ If your keyboard has working EEPROM, it will remember the last used input mode a
### ** macOS **
-**Mode Name:** `UNICODE_MODE_MAC`
+**Mode Name:** `UNICODE_MODE_MACOS`
macOS has built-in support for Unicode input as its own input source. It supports all possible code points by way of surrogate pairs for code points above `U+FFFF`.