Function: aw-use-frame

aw-use-frame is a byte-compiled function defined in ace-window.el.

Signature

(aw-use-frame WINDOW)

Documentation

Create a new frame using the contents of WINDOW.

The new frame is set to the same size as the previous frame, offset by aw-frame-offset (x . y) pixels.

Source Code

;; Defined in ~/.emacs.d/elpa/ace-window-20220911.358/ace-window.el
(defun aw-use-frame (window)
  "Create a new frame using the contents of WINDOW.

The new frame is set to the same size as the previous frame, offset by
`aw-frame-offset' (x . y) pixels."
  (aw-switch-to-window window)
  (aw-make-frame))