Variable: pixel-scroll-precision-mode

pixel-scroll-precision-mode is a customizable variable defined in pixel-scroll.el.gz.

Value

nil

Documentation

Non-nil if Pixel-Scroll-Precision mode is enabled.

See the pixel-scroll-precision-mode(var)/pixel-scroll-precision-mode(fun) command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node (emacs)Easy Customization) or call the function pixel-scroll-precision-mode(var)/pixel-scroll-precision-mode(fun).

Probably introduced at or before Emacs version 29.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/pixel-scroll.el.gz
;;;###autoload
(define-minor-mode pixel-scroll-precision-mode
  "Toggle pixel scrolling.
When enabled, this minor mode allows you to scroll the display
precisely, according to the turning of the mouse wheel."
  :global t
  :group 'mouse
  :keymap pixel-scroll-precision-mode-map
  (setq mwheel-coalesce-scroll-events
        (not pixel-scroll-precision-mode))
  (setq-default make-cursor-line-fully-visible
                (not pixel-scroll-precision-mode)))