Function: hkey-replace

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

Signature

(hkey-replace RELEASE-WINDOW)

Documentation

Grab the buffer from RELEASE-WINDOW and place it into the current window.

When called interactively the RELEASE-WINDOW is chosen via ace-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-replace (release-window)
  "Grab the buffer from RELEASE-WINDOW and place it into the current window.
When called interactively the RELEASE-WINDOW is chosen via
ace-window.  The selected window does not change."
  (interactive
   (list (let ((mode-line-text (concat " Ace - " (nth 2 (assq ?r aw-dispatch-alist)))))
	   (aw-select mode-line-text))))
  (set-window-buffer (selected-window) (window-buffer release-window)))