From 7e9c4508c86bd43cbb5f26ea0e8cf5b8c03416b1 Mon Sep 17 00:00:00 2001 From: Yoichi NAKAYAMA Date: Sat, 23 May 2026 09:38:40 +0900 Subject: [PATCH] [Docs][MouseKeys] Document the effect of the acceleration key in default mode. (#26213) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Document the effect of the acceleration key in default mode. * Move description into TIPS Co-authored-by: フィルターペーパー <76888457+filterpaper@users.noreply.github.com> --------- Co-authored-by: フィルターペーパー <76888457+filterpaper@users.noreply.github.com> --- docs/features/mouse_keys.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/features/mouse_keys.md b/docs/features/mouse_keys.md index 86b50fa9c8d..bb340f58e6d 100644 --- a/docs/features/mouse_keys.md +++ b/docs/features/mouse_keys.md @@ -77,6 +77,7 @@ Tips: * For smoother cursor movements, lower the value of `MOUSEKEY_INTERVAL`. If the refresh rate of your display is 60Hz, you could set it to `16` (1/60). As this raises the cursor speed significantly, you may want to lower `MOUSEKEY_MAX_SPEED`. * Setting `MOUSEKEY_TIME_TO_MAX` or `MOUSEKEY_WHEEL_TIME_TO_MAX` to `0` will disable acceleration for the cursor or scrolling respectively. This way you can make one of them constant while keeping the other accelerated, which is not possible in constant speed mode. * Setting `MOUSEKEY_WHEEL_INTERVAL` too low will make scrolling too fast. Setting it too high will make scrolling too slow when the wheel key is held down. +* `MS_ACL0`, `MS_ACL1` and `MS_ACL2` change the cursor and scroll speed to 1/4, 1/2, and the maximum speed, respectively. Cursor acceleration uses the same algorithm as the X Window System MouseKeysAccel feature. You can read more about it [on Wikipedia](https://en.wikipedia.org/wiki/Mouse_keys).