Function: hycontrol-numeric-keypad
hycontrol-numeric-keypad is a byte-compiled function defined in
hycontrol.el.
Signature
(hycontrol-numeric-keypad E ARG)
Documentation
Move frame to screen location based on the last pressed numeric keypad key E.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-numeric-keypad (e _arg)
"Move frame to screen location based on the last pressed numeric keypad key E."
(let ((num (if (integerp e)
e
;; kp-<num> symbol
(- (aref (symbol-name e) 3) ?0))))
(funcall
(nth num '(nil hycontrol-frame-to-bottom-left hycontrol-frame-to-bottom-center hycontrol-frame-to-bottom-right
hycontrol-frame-to-left-center hycontrol-frame-to-center hycontrol-frame-to-right-center
hycontrol-frame-to-top-left hycontrol-frame-to-top-center hycontrol-frame-to-top-right)))))