diff options
author | Drashna Jaelre <drashna@live.com> | 2018-10-06 18:02:02 -0700 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-10-09 15:21:08 -0400 |
commit | 5a127293e7dfb348102afcb47d0e21b6fefad50a (patch) | |
tree | 98b4da5b8159d34c031cf264bf57fa89dcbdec63 /docs/feature_unicode.md | |
parent | 7f6bb82b9daf51fb79972871e9f85696f783aa7a (diff) | |
download | qmk_firmware-5a127293e7dfb348102afcb47d0e21b6fefad50a.tar.gz qmk_firmware-5a127293e7dfb348102afcb47d0e21b6fefad50a.zip |
Fix formatting in Unicode text
Diffstat (limited to 'docs/feature_unicode.md')
-rw-r--r-- | docs/feature_unicode.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/feature_unicode.md b/docs/feature_unicode.md index f13eed05b..b1527b848 100644 --- a/docs/feature_unicode.md +++ b/docs/feature_unicode.md | |||
@@ -82,11 +82,11 @@ sort of like macro. Unfortunately, each OS has different ideas on how Unicode is | |||
82 | 82 | ||
83 | This is the current list of Unicode input method in QMK: | 83 | This is the current list of Unicode input method in QMK: |
84 | 84 | ||
85 | * _UC_OSX_: MacOS Unicode Hex Input support. Works only up to 0xFFFF. Disabled by default. To enable: go to System Preferences -> Keyboard -> Input Sources, and enable Unicode Hex. | 85 | * __UC_OSX__: MacOS Unicode Hex Input support. Works only up to 0xFFFF. Disabled by default. To enable: go to System Preferences -> Keyboard -> Input Sources, and enable Unicode Hex. |
86 | * _UC_OSX_RALT_: Same as UC_OSX, but sends the Right Alt key for unicode input | 86 | * __UC_OSX_RALT__: Same as UC_OSX, but sends the Right Alt key for unicode input |
87 | * _UC_LNX_: Unicode input method under Linux. Works up to 0xFFFFF. Should work almost anywhere on ibus enabled distros. Without ibus, this works under GTK apps, but rarely anywhere else. | 87 | * __UC_LNX__: Unicode input method under Linux. Works up to 0xFFFFF. Should work almost anywhere on ibus enabled distros. Without ibus, this works under GTK apps, but rarely anywhere else. |
88 | * _UC_WIN_: (not recommended) Windows built-in Unicode input. To enable: create registry key under `HKEY_CURRENT_USER\Control Panel\Input Method\EnableHexNumpad` of type `REG_SZ` called `EnableHexNumpad`, set its value to 1, and reboot. This method is not recommended because of reliability and compatibility issue, use WinCompose method below instead. | 88 | * __UC_WIN__: (not recommended) Windows built-in Unicode input. To enable: create registry key under `HKEY_CURRENT_USER\Control Panel\Input Method\EnableHexNumpad` of type `REG_SZ` called `EnableHexNumpad`, set its value to 1, and reboot. This method is not recommended because of reliability and compatibility issue, use WinCompose method below instead. |
89 | * _UC_WINC_: Windows Unicode input using WinCompose. Requires [WinCompose](https://github.com/samhocevar/wincompose). Works reliably under many (all?) variations of Windows. | 89 | * __UC_WINC__: Windows Unicode input using WinCompose. Requires [WinCompose](https://github.com/samhocevar/wincompose). Works reliably under many (all?) variations of Windows. |
90 | 90 | ||
91 | At some point, you need to call `set_unicode_input_mode(x)` to set the correct unicode method. This sets the method that is used to send the unicode, and stores it in EEPROM, so you only need to call this once. | 91 | At some point, you need to call `set_unicode_input_mode(x)` to set the correct unicode method. This sets the method that is used to send the unicode, and stores it in EEPROM, so you only need to call this once. |
92 | 92 | ||