Function: hycontrol-move-frame
hycontrol-move-frame is a byte-compiled function defined in
hycontrol.el.
Signature
(hycontrol-move-frame ARROW PIXELS)
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-move-frame (arrow pixels)
(let ((x (car (frame-position)))
(y (cdr (frame-position))))
(pcase arrow
('up (set-frame-position nil x (max 0 (- y pixels))))
('down (set-frame-position nil x (max 0 (+ y pixels))))
('left (set-frame-position nil (max 0 (- x pixels)) y))
('right (set-frame-position nil (max 0 (+ x pixels)) y)))))