Function: posframe-poshandler-window-top-left-corner
posframe-poshandler-window-top-left-corner is a byte-compiled function
defined in posframe.el.
Signature
(posframe-poshandler-window-top-left-corner INFO)
Documentation
Posframe's position handler.
This poshandler function let top left corner of posframe align to top left corner of window.
The structure of INFO can be found in docstring of
posframe-show.
Source Code
;; Defined in ~/.emacs.d/elpa/posframe-20260415.14/posframe.el
(defun posframe-poshandler-window-top-left-corner (info)
"Posframe's position handler.
This poshandler function let top left corner of posframe align to
top left corner of window.
The structure of INFO can be found in docstring of
`posframe-show'."
(let* ((window-left (plist-get info :parent-window-left))
(window-top (plist-get info :parent-window-top)))
(cons window-left
window-top)))