Function: hmouse-buffer-to-window
hmouse-buffer-to-window is a byte-compiled function defined in
hui-window.el.
Signature
(hmouse-buffer-to-window &optional NEW-WINDOW)
Documentation
Replace buffer in the release window with buffer from the depress window.
Invoked via drag, using the Action Key release window and the Action Key depress window. With optional boolean NEW-WINDOW non-nil, sensibly split the release window before replacing the buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-buffer-to-window (&optional new-window)
"Replace buffer in the release window with buffer from the depress window.
Invoked via drag, using the Action Key release window and the
Action Key depress window. With optional boolean NEW-WINDOW
non-nil, sensibly split the release window before replacing the
buffer."
(when new-window
(with-selected-window action-key-release-window
(hmouse-split-window)))
(set-window-buffer action-key-release-window (window-buffer action-key-depress-window)))