Variable: hycontrol--windows-prompt-format

hycontrol--windows-prompt-format is a variable defined in hycontrol.el.

Value

"WINDOWS:       (h=heighten, s=shorten, w=widen,  n=narrow, arrow=move frame) by %d unit%s\n                .=clear units,                   a/A=cycle frame width/height\n                d/D=delete win/others,           o/O=other win/frame,         I/J/K/M=to window\n                [/]=split win atop/sideways,     (/)=save/restore wconfig,    @=grid of wins\n                f/F=clone/move win to new frame, -/+=minimize/maximize win,   ==wins same size\n                u/b/~=un/bury/swap bufs,         z/Z/X=zoom out/in/reset,     t=to FRAMES mode, Q=quit\nFrame to edges: c=cycle,                         i/j/k/m=expand/contract,     p/num-keypad=move"

Documentation

HyControl windows-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
(defvar hycontrol--windows-prompt-format
  (concat "WINDOWS:       (h=heighten, s=shorten, w=widen,  n=narrow, arrow=move frame) by %d unit%s\n"
          "                .=clear units,                   a/A=cycle frame width/height\n"
          "                d/D=delete win/others,           o/O=other win/frame,         I/J/K/M=to window\n"
          "                [/]=split win atop/sideways,     (/)=save/restore wconfig,    @=grid of wins\n"
          "                f/F=clone/move win to new frame, -/+=minimize/maximize win,   ==wins same size\n"
          "                u/b/~=un/bury/swap bufs,         z/Z/X=zoom out/in/reset,     t=to FRAMES mode, Q=quit\n"
          "Frame to edges: c=cycle,                         i/j/k/m=expand/contract,     p/num-keypad=move")
  "HyControl windows-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.")