diff options
Diffstat (limited to 'docs/feature_mouse_keys.md')
-rw-r--r-- | docs/feature_mouse_keys.md | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/docs/feature_mouse_keys.md b/docs/feature_mouse_keys.md index 78c44b3e6..dd846e096 100644 --- a/docs/feature_mouse_keys.md +++ b/docs/feature_mouse_keys.md | |||
@@ -21,24 +21,24 @@ You can see an example here: https://github.com/qmk/qmk_firmware/blob/master/key | |||
21 | 21 | ||
22 | You can use these keycodes within your keymap to map button presses to mouse actions: | 22 | You can use these keycodes within your keymap to map button presses to mouse actions: |
23 | 23 | ||
24 | |Long Name|Short Name|Description| | 24 | |Key |Aliases |Description | |
25 | |---------|----------|-----------| | 25 | |----------------|---------|---------------------------| |
26 | |KC_MS_UP|KC_MS_U|Mouse Cursor Up| | 26 | |`KC_MS_UP` |`KC_MS_U`|Mouse Cursor Up | |
27 | |KC_MS_DOWN|KC_MS_D|Mouse Cursor Down| | 27 | |`KC_MS_DOWN` |`KC_MS_D`|Mouse Cursor Down | |
28 | |KC_MS_LEFT|KC_MS_L|Mouse Cursor Left| | 28 | |`KC_MS_LEFT` |`KC_MS_L`|Mouse Cursor Left | |
29 | |KC_MS_RIGHT|KC_MS_R|Mouse Cursor Right| | 29 | |`KC_MS_RIGHT` |`KC_MS_R`|Mouse Cursor Right | |
30 | |KC_MS_BTN1|KC_BTN1|Mouse Button 1| | 30 | |`KC_MS_BTN1` |`KC_BTN1`|Mouse Button 1 | |
31 | |KC_MS_BTN2|KC_BTN2|Mouse Button 2| | 31 | |`KC_MS_BTN2` |`KC_BTN2`|Mouse Button 2 | |
32 | |KC_MS_BTN3|KC_BTN3|Mouse Button 3| | 32 | |`KC_MS_BTN3` |`KC_BTN3`|Mouse Button 3 | |
33 | |KC_MS_BTN4|KC_BTN4|Mouse Button 4| | 33 | |`KC_MS_BTN4` |`KC_BTN4`|Mouse Button 4 | |
34 | |KC_MS_BTN5|KC_BTN5|Mouse Button 5| | 34 | |`KC_MS_BTN5` |`KC_BTN5`|Mouse Button 5 | |
35 | |KC_MS_WH_UP|KC_WH_U|Mouse Wheel Up| | 35 | |`KC_MS_WH_UP` |`KC_WH_U`|Mouse Wheel Up | |
36 | |KC_MS_WH_DOWN|KC_WH_D|Mouse Wheel Down| | 36 | |`KC_MS_WH_DOWN` |`KC_WH_D`|Mouse Wheel Down | |
37 | |KC_MS_WH_LEFT|KC_WH_L|Mouse Wheel Left| | 37 | |`KC_MS_WH_LEFT` |`KC_WH_L`|Mouse Wheel Left | |
38 | |KC_MS_WH_RIGHT|KC_WH_R|Mouse Wheel Right| | 38 | |`KC_MS_WH_RIGHT`|`KC_WH_R`|Mouse Wheel Right | |
39 | |KC_MS_ACCEL0|KC_ACL0|Set Mouse Acceleration Speed to 0| | 39 | |`KC_MS_ACCEL0` |`KC_ACL0`|Set mouse acceleration to 0| |
40 | |KC_MS_ACCEL1|KC_ACL1|Set Mouse Acceleration Speed to 1| | 40 | |`KC_MS_ACCEL1` |`KC_ACL1`|Set mouse acceleration to 1| |
41 | |KC_MS_ACCEL2|KC_ACL2|Set Mouse Acceleration Speed to 2| | 41 | |`KC_MS_ACCEL2` |`KC_ACL2`|Set mouse acceleration to 2| |
42 | 42 | ||
43 | You can see an example in the `_ML` here: https://github.com/qmk/qmk_firmware/blob/master/keyboards/clueboard/keymaps/mouse_keys/keymap.c#L46 | 43 | You can see an example in the `_ML` here: https://github.com/qmk/qmk_firmware/blob/master/keyboards/clueboard/keymaps/mouse_keys/keymap.c#L46 |
44 | 44 | ||