diff options
author | Graham P Heath <graham.p.heath@gmail.com> | 2019-02-28 14:15:38 -0600 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-02-28 12:15:38 -0800 |
commit | 9b82a9295f413ce7a7d7ce18d95011b92f6d4d56 (patch) | |
tree | f8fbf970ced0dd50e11fa17fd3a417a68eb22d7f /docs/feature_unicode.md | |
parent | 220551ed5fa3fc2a6ead4a182bad189b21ab40cc (diff) | |
download | qmk_firmware-9b82a9295f413ce7a7d7ce18d95011b92f6d4d56.tar.gz qmk_firmware-9b82a9295f413ce7a7d7ce18d95011b92f6d4d56.zip |
[Docs] Add note about using Unicode Hex Input (#5248)
* Add note about using Unicode Hex Input
* Update docs
* remove extra return, oops
Diffstat (limited to 'docs/feature_unicode.md')
-rw-r--r-- | docs/feature_unicode.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/feature_unicode.md b/docs/feature_unicode.md index 7dd85c5c2..1bc3c89d2 100644 --- a/docs/feature_unicode.md +++ b/docs/feature_unicode.md | |||
@@ -65,6 +65,8 @@ The following input modes are available: | |||
65 | To enable, go to _System Preferences > Keyboard > Input Sources_, add _Unicode Hex Input_ to the list (it's under _Other_), then activate it from the input dropdown in the Menu Bar. | 65 | To enable, go to _System Preferences > Keyboard > Input Sources_, add _Unicode Hex Input_ to the list (it's under _Other_), then activate it from the input dropdown in the Menu Bar. |
66 | By default, this mode uses the left Option key (`KC_LALT`), but this can be changed by defining [`UNICODE_OSX_KEY`](#input-key-configuration) with another keycode. | 66 | By default, this mode uses the left Option key (`KC_LALT`), but this can be changed by defining [`UNICODE_OSX_KEY`](#input-key-configuration) with another keycode. |
67 | 67 | ||
68 | **Note:** Using the _Unicode Hex Input_ input source may disable some Option based shortcuts, such as: Option + Left Arrow (`moveWordLeftAndModifySelection`) and Option + Right Arrow (`moveWordRightAndModifySelection`). | ||
69 | |||
68 | * **`UC_LNX`**: Linux built-in IBus Unicode input. Supports code points up to `0x10FFFF` (all possible code points). | 70 | * **`UC_LNX`**: Linux built-in IBus Unicode input. Supports code points up to `0x10FFFF` (all possible code points). |
69 | 71 | ||
70 | Enabled by default and works almost anywhere on IBus-enabled distros. Without IBus, this mode works under GTK apps, but rarely anywhere else. | 72 | Enabled by default and works almost anywhere on IBus-enabled distros. Without IBus, this mode works under GTK apps, but rarely anywhere else. |
@@ -121,7 +123,7 @@ For instance, you can add these definitions to your `config.h` file: | |||
121 | 123 | ||
122 | ### Additional Customization | 124 | ### Additional Customization |
123 | 125 | ||
124 | Because Unicode is such a large and variable feature, there are a number of options that you can customize to work better on your system. | 126 | Because Unicode is such a large and variable feature, there are a number of options that you can customize to work better on your system. |
125 | 127 | ||
126 | #### Start and Finish input functions | 128 | #### Start and Finish input functions |
127 | 129 | ||
@@ -183,7 +185,7 @@ AutoHotkey inserts the Text right of `Send, ` when this combination is pressed. | |||
183 | 185 | ||
184 | ### US International | 186 | ### US International |
185 | 187 | ||
186 | If you enable the US International layout on the system, it will use punctuation to accent the characters. | 188 | If you enable the US International layout on the system, it will use punctuation to accent the characters. |
187 | 189 | ||
188 | For instance, typing "`a" will result in à. | 190 | For instance, typing "`a" will result in à. |
189 | 191 | ||