Function: hmouse-drag-vertically

hmouse-drag-vertically is a byte-compiled function defined in hui-window.el.

Signature

(hmouse-drag-vertically)

Documentation

Return non-nil iff last Action Key use was a vertical drag in a single window.

If free variable assist-flag is non-nil, uses Assist Key. Value returned is nil if not a vertical line drag, 'up if drag moved up or
'down otherwise.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-drag-vertically ()
  "Return non-nil iff last Action Key use was a vertical drag in a single window.
If free variable `assist-flag' is non-nil, uses Assist Key.
Value returned is nil if not a vertical line drag, \\='up if drag moved up or
\\='down otherwise."
  (when (hmouse-press-release-same-window)
    (hmouse-drag-vertically-within-emacs)))