Function: hkey-buffer-to

hkey-buffer-to is an autoloaded, interactive and byte-compiled function defined in hmouse-drv.el.

Signature

(hkey-buffer-to FROM-WINDOW TO-WINDOW)

Documentation

Display buffer from FROM-WINDOW in TO-WINDOW.

When interactive use ace-window to choose FROM-WINDOW and TO-WINDOW. The selected window does not change.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-drv.el
;;;###autoload
(defun hkey-buffer-to (from-window to-window)
  "Display buffer from FROM-WINDOW in TO-WINDOW.
When interactive use ace-window to choose FROM-WINDOW and
TO-WINDOW.  The selected window does not change."
  (interactive
   (list (aw-select " Ace - Hyperbole: Buffer to Show")
	 (aw-select " Ace - Hyperbole: Show in Window")))
  (with-selected-window from-window
    (set-window-buffer to-window (current-buffer))))