Function: hycontrol-framemove-direction
hycontrol-framemove-direction is a byte-compiled function defined in
hycontrol.el.
Signature
(hycontrol-framemove-direction DIRECTION)
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
;;; Move among frames
(defun hycontrol-framemove-direction (direction)
;; The framemove package is no longer available via a package archive;
;; it must be installed manually if you want to use this function.
(unless (featurep 'framemove)
(hycontrol-quit)
(error "(hycontrol-framemove-direction): Requires manual installation of:\n %s"
"https://github.com/emacsmirror/framemove/blob/master/framemove.el"))
(fm-next-frame direction))