]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve docs for horizontal scrolling with mouse and touchpad (Bug#39979)
authorİ. Göktuğ Kayaalp <self@gkayaalp.com>
Sat, 7 Mar 2020 21:15:01 +0000 (00:15 +0300)
committerNoam Postavsky <npostavs@gmail.com>
Wed, 11 Mar 2020 23:48:47 +0000 (19:48 -0400)
* lisp/mwheel.el (mouse-wheel-tilt-scroll,
mouse-wheel-flip-direction): Improve docstrings.
* doc/emacs/frames.texi (Mouse Commands): Mention touchpads.

doc/emacs/frames.texi
lisp/mwheel.el

index 002297c25999cacbf33fbed8c9745e4d51b6b3e7..16205e6e0c3237c1098041e3e086724090a50e11 100644 (file)
@@ -217,10 +217,11 @@ default bound to scrolling with the @key{Ctrl} modifier.
 @vindex mouse-wheel-tilt-scroll
 @vindex mouse-wheel-flip-direction
 Emacs can also support horizontal scrolling if your mouse's wheel can
-be tilted.  This feature is off by default; the variable
-@code{mouse-wheel-tilt-scroll} turns it on.  If you'd like to reverse
-the direction of horizontal scrolling, customize the variable
-@code{mouse-wheel-flip-direction} to a non-@code{nil} value.
+be tilted, or your touchpad supports it.  This feature is off by
+default; the variable @code{mouse-wheel-tilt-scroll} turns it on.  If
+you'd like to reverse the direction of horizontal scrolling, customize
+the variable @code{mouse-wheel-flip-direction} to a non-@code{nil}
+value.
 
 When the mouse pointer is over an image, scrolling the mouse wheel
 with the @key{Ctrl} modifier scales the image under the mouse pointer.
index 56150c803f7f427d9dc18d040d05eccfc01d5032..79977ef8640f1607efeebe4e981b2ca2d1fbed3c 100644 (file)
@@ -145,13 +145,16 @@ face height."
 ;;; For tilt-scroll
 ;;;
 (defcustom mouse-wheel-tilt-scroll nil
-  "Enable scroll using tilting mouse wheel."
+  "Enable horizontal scrolling via mouse or touchpad.
+Also see `mouse-wheel-flip-direction'."
   :group 'mouse
   :type 'boolean
   :version "26.1")
 
 (defcustom mouse-wheel-flip-direction nil
-  "Swap direction of `wheel-right' and `wheel-left'."
+  "Swap direction of `wheel-right' and `wheel-left'.
+This inverts the direction of horizontal scrolling.  Also see
+`mouse-wheel-tilt-scroll'."
   :group 'mouse
   :type 'boolean
   :version "26.1")