Variable: hycontrol--frames-prompt-format
hycontrol--frames-prompt-format is a variable defined in hycontrol.el.
Value
"FRAMES: (h=heighten, s=shorten, w=widen, n=narrow, %%/H/W=screen %%age, arrow=move frame) by %d unit%s\n .=clear units, a/A=cycle frame width/height\n d/D=delete frame/others, o/O=other win/frame, I/J/K/M=to frame\n [/]=create frame, (/)=save/restore fconfig, @=grid of wins\n f/F=clone/move win to new frame, -/+=minimize/maximize frame, ==frames same size\n u/b/~=un/bury/swap bufs, z/Z/X=zoom txt out/in/reset, t=to WINDOWS mode, Q=quit\nFrame to edges: c=cycle, i/j/k/m=expand/contract, p/num-keypad=move"
Documentation
HyControl frames-mode minibuffer prompt string to pass to format.
Format it with 2 arguments: prefix-arg and a plural string indicating if
prefix-arg is not equal to 1.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260822.1645/hycontrol.el
;;; ************************************************************************
;;; Private variables
;;; ************************************************************************
(defvar hycontrol--frames-prompt-format
(concat "FRAMES: (h=heighten, s=shorten, w=widen, n=narrow, %%/H/W=screen %%age, arrow=move frame) by %d unit%s\n"
" .=clear units, a/A=cycle frame width/height\n"
;; d/^/D=delete/iconify frame/others - iconify left out due to some bug on macOS (see comment near ^ below)
" d/D=delete frame/others, o/O=other win/frame, I/J/K/M=to frame\n"
" [/]=create frame, (/)=save/restore fconfig, @=grid of wins\n"
" f/F=clone/move win to new frame, -/+=minimize/maximize frame, ==frames same size\n"
" u/b/~=un/bury/swap bufs, z/Z/X=zoom txt out/in/reset, t=to WINDOWS mode, Q=quit\n"
"Frame to edges: c=cycle, i/j/k/m=expand/contract, p/num-keypad=move")
"HyControl frames-mode minibuffer prompt string to pass to format.
Format it with 2 arguments: `prefix-arg' and a plural string indicating if
`prefix-arg' is not equal to 1.")