Function: hmouse-drag-outside-all-windows

hmouse-drag-outside-all-windows is a byte-compiled function defined in hui-window.el.

Signature

(hmouse-drag-outside-all-windows)

Documentation

Return non-nil if last Action Key release was outside of an Emacs window.

If free variable assist-flag is non-nil, uses Assist Key.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-drag-outside-all-windows ()
  "Return non-nil if last Action Key release was outside of an Emacs window.
If free variable `assist-flag' is non-nil, uses Assist Key."
  (if assist-flag
      (and (window-live-p assist-key-depress-window) (not assist-key-release-window))
    (and (window-live-p action-key-depress-window) (not action-key-release-window))))