Function: aw-execute-command-other-window

aw-execute-command-other-window is a byte-compiled function defined in ace-window.el.

Signature

(aw-execute-command-other-window WINDOW)

Documentation

Execute a command in WINDOW.

Source Code

;; Defined in ~/.emacs.d/elpa/ace-window-20220911.358/ace-window.el
(defun aw-execute-command-other-window (window)
  "Execute a command in WINDOW."
  (aw-switch-to-window window)
  (unwind-protect
      (funcall
       (key-binding
        (read-key-sequence
         "Enter key sequence: ")))
    (aw-flip-window)))