aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/faq_keymap.md7
-rw-r--r--docs/keycodes.md4
-rw-r--r--docs/keycodes_basic.md6
3 files changed, 5 insertions, 12 deletions
diff --git a/docs/faq_keymap.md b/docs/faq_keymap.md
index 0a627469e..84d8548d4 100644
--- a/docs/faq_keymap.md
+++ b/docs/faq_keymap.md
@@ -95,13 +95,6 @@ Even worse, it is not recognized unless the keyboard's VID and PID match that of
95 95
96See [this issue](https://github.com/qmk/qmk_firmware/issues/2179) for detailed information. 96See [this issue](https://github.com/qmk/qmk_firmware/issues/2179) for detailed information.
97 97
98
99## Media Control Keys in Mac OSX
100#### KC_MNXT and KC_MPRV Does Not Work on Mac
101Use `KC_MFFD`(`KC_MEDIA_FAST_FORWARD`) and `KC_MRWD`(`KC_MEDIA_REWIND`) instead of `KC_MNXT` and `KC_MPRV`.
102See https://github.com/tmk/tmk_keyboard/issues/195
103
104
105## Keys Supported in Mac OSX? 98## Keys Supported in Mac OSX?
106You can know which keycodes are supported in OSX from this source code. 99You can know which keycodes are supported in OSX from this source code.
107 100
diff --git a/docs/keycodes.md b/docs/keycodes.md
index 60f14844c..7dcff03fd 100644
--- a/docs/keycodes.md
+++ b/docs/keycodes.md
@@ -185,8 +185,8 @@ This is a reference only. Each group of keys links to the page documenting their
185|`KC_AUDIO_MUTE` |`KC_MUTE` |Mute | 185|`KC_AUDIO_MUTE` |`KC_MUTE` |Mute |
186|`KC_AUDIO_VOL_UP` |`KC_VOLU` |Volume Up | 186|`KC_AUDIO_VOL_UP` |`KC_VOLU` |Volume Up |
187|`KC_AUDIO_VOL_DOWN` |`KC_VOLD` |Volume Down | 187|`KC_AUDIO_VOL_DOWN` |`KC_VOLD` |Volume Down |
188|`KC_MEDIA_NEXT_TRACK` |`KC_MNXT` |Next Track (Windows) | 188|`KC_MEDIA_NEXT_TRACK` |`KC_MNXT` |Next Track |
189|`KC_MEDIA_PREV_TRACK` |`KC_MPRV` |Previous Track (Windows) | 189|`KC_MEDIA_PREV_TRACK` |`KC_MPRV` |Previous Track |
190|`KC_MEDIA_STOP` |`KC_MSTP` |Stop Track (Windows) | 190|`KC_MEDIA_STOP` |`KC_MSTP` |Stop Track (Windows) |
191|`KC_MEDIA_PLAY_PAUSE` |`KC_MPLY` |Play/Pause Track | 191|`KC_MEDIA_PLAY_PAUSE` |`KC_MPLY` |Play/Pause Track |
192|`KC_MEDIA_SELECT` |`KC_MSEL` |Launch Media Player (Windows) | 192|`KC_MEDIA_SELECT` |`KC_MSEL` |Launch Media Player (Windows) |
diff --git a/docs/keycodes_basic.md b/docs/keycodes_basic.md
index 8b1b52e19..75d58c1f1 100644
--- a/docs/keycodes_basic.md
+++ b/docs/keycodes_basic.md
@@ -191,7 +191,7 @@ The basic set of keycodes are based on the [HID Keyboard/Keypad Usage Page (0x07
191 191
192These keycodes are not part of the Keyboard/Keypad usage page. The `SYSTEM_` keycodes are found in the Generic Desktop page, and the rest are located in the Consumer page. 192These keycodes are not part of the Keyboard/Keypad usage page. The `SYSTEM_` keycodes are found in the Generic Desktop page, and the rest are located in the Consumer page.
193 193
194Windows and macOS use different keycodes for "next track" and "previous track". Make sure you choose the keycode that corresponds to your OS. 194?> Some of these keycodes may behave differently depending on the OS. For example, on macOS, the keycodes `KC_MEDIA_FAST_FORWARD`, `KC_MEDIA_REWIND`, `KC_MEDIA_NEXT_TRACK` and `KC_MEDIA_PREV_TRACK` skip within the current track when held, but skip the entire track when tapped.
195 195
196|Key |Aliases |Description | 196|Key |Aliases |Description |
197|-----------------------|---------|-----------------------------| 197|-----------------------|---------|-----------------------------|
@@ -201,8 +201,8 @@ Windows and macOS use different keycodes for "next track" and "previous track".
201|`KC_AUDIO_MUTE` |`KC_MUTE`|Mute | 201|`KC_AUDIO_MUTE` |`KC_MUTE`|Mute |
202|`KC_AUDIO_VOL_UP` |`KC_VOLU`|Volume Up | 202|`KC_AUDIO_VOL_UP` |`KC_VOLU`|Volume Up |
203|`KC_AUDIO_VOL_DOWN` |`KC_VOLD`|Volume Down | 203|`KC_AUDIO_VOL_DOWN` |`KC_VOLD`|Volume Down |
204|`KC_MEDIA_NEXT_TRACK` |`KC_MNXT`|Next Track (Windows) | 204|`KC_MEDIA_NEXT_TRACK` |`KC_MNXT`|Next Track |
205|`KC_MEDIA_PREV_TRACK` |`KC_MPRV`|Previous Track (Windows) | 205|`KC_MEDIA_PREV_TRACK` |`KC_MPRV`|Previous Track |
206|`KC_MEDIA_STOP` |`KC_MSTP`|Stop Track (Windows) | 206|`KC_MEDIA_STOP` |`KC_MSTP`|Stop Track (Windows) |
207|`KC_MEDIA_PLAY_PAUSE` |`KC_MPLY`|Play/Pause Track | 207|`KC_MEDIA_PLAY_PAUSE` |`KC_MPLY`|Play/Pause Track |
208|`KC_MEDIA_SELECT` |`KC_MSEL`|Launch Media Player (Windows)| 208|`KC_MEDIA_SELECT` |`KC_MSEL`|Launch Media Player (Windows)|