Function: hmouse-drag-between-windows
hmouse-drag-between-windows is a byte-compiled function defined in
hui-window.el.
Signature
(hmouse-drag-between-windows)
Documentation
Return non-nil if last Action Key depress and release were in different windows.
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-between-windows ()
"Return non-nil if last Action Key depress and release were in different windows.
If free variable `assist-flag' is non-nil, uses Assist Key."
(if assist-flag
(and (window-live-p assist-key-depress-window)
(window-live-p assist-key-release-window)
(not (eq assist-key-depress-window assist-key-release-window)))
(and (window-live-p action-key-depress-window)
(window-live-p action-key-release-window)
(not (eq action-key-depress-window action-key-release-window)))))