Function: hycontrol-make-frame
hycontrol-make-frame is an interactive and byte-compiled function
defined in hycontrol.el.
Signature
(hycontrol-make-frame)
Documentation
Create a new frame with the same size and selected buffer as the selected frame.
The new frame is selected. It is offset from the selected frame
by hycontrol-frame-offset (x . y) pixels.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-make-frame ()
"Create a new frame with the same size and selected buffer as the selected frame.
The new frame is selected. It is offset from the selected frame
by `hycontrol-frame-offset' (x . y) pixels."
(interactive)
(select-frame (make-frame (list (cons 'width (frame-width)) (cons 'height (frame-height))
(cons 'left (+ (car hycontrol-frame-offset) (car (frame-position))))
(cons 'top (+ (cdr hycontrol-frame-offset) (cdr (frame-position))))))))