Function: hkey-swap
hkey-swap is an autoloaded, interactive and byte-compiled function
defined in hmouse-drv.el.
Signature
(hkey-swap TO-WINDOW)
Documentation
Swap the buffer from the selected window with that of TO-WINDOW.
When called interactively the TO-WINDOW is chosen via ace-window. Leave TO-WINDOW as the selected window.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-drv.el
;;;###autoload
(defun hkey-swap (to-window)
"Swap the buffer from the selected window with that of TO-WINDOW.
When called interactively the TO-WINDOW is chosen via ace-window. Leave
TO-WINDOW as the selected window."
(interactive
(list (let ((mode-line-text (concat " Ace - Hyperbole: " (nth 2 (assq ?m aw-dispatch-alist)))))
(aw-select mode-line-text))))
(hkey-swap-buffers (selected-window) to-window))