Improve clarity in mouse_keys.md

Improved consistency and clarity by bringing keycode representation in line with other documentation containing keycodes.
This commit is contained in:
James Fitzgerald 2022-06-11 11:55:50 -04:00 committed by Kyle Brown
parent 91f494846a
commit b6a782e83c

View File

@ -10,14 +10,14 @@ keyboard.modules.append(MouseKeys())
# Keycodes
| Keycode | Description |
|---------------------|--------------------------------------|
| `MB_LMB` | Left mouse button |
| `MB_RMB` | Right mouse button |
| `MB_MMB` | Middle mouse button |
| `MW_UP` | Mouse wheel up |
| `MW_DOWN`, `MW_DN` | Mouse wheel down |
| `MS_UP` | Move mouse cursor up |
| `MS_DOWN`, `MS_DN` | Move mouse cursor down |
| `MS_LEFT`, `MS_LT` | Move mouse cursor left |
| `MS_RIGHT`, `MS_RT` | Move mouse cursor right |
| Keycode | Description |
|---------------------------|--------------------------------------|
| `KC.MB_LMB` | Left mouse button |
| `KC.MB_RMB` | Right mouse button |
| `KC.MB_MMB` | Middle mouse button |
| `KC.MW_UP` | Mouse wheel up |
| `KC.MW_DOWN`, `KC.MW_DN` | Mouse wheel down |
| `KC.MS_UP` | Move mouse cursor up |
| `KC.MS_DOWN`, `KC.MS_DN` | Move mouse cursor down |
| `KC.MS_LEFT`, `KC.MS_LT` | Move mouse cursor left |
| `KC.MS_RIGHT`, `KC.MS_RT` | Move mouse cursor right |