Variable: pixel-scroll-precision-mode-hook

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

Value

nil

Documentation

Hook run after entering or leaving pixel-scroll-precision-mode(var)/pixel-scroll-precision-mode(fun).

No problems result if this variable is not bound. add-hook automatically binds it. (This is true for all hook variables.)

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 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)))