Variable: cfrs-input-mode-hook

cfrs-input-mode-hook is a variable defined in cfrs.el.

Value

nil

Documentation

Hook run after entering cfrs-input-mode.

No problems result if this variable is not bound. add-hook automatically binds it. (This is true for all hook variables.)

Source Code

;; Defined in ~/.emacs.d/elpa/cfrs-20250729.1422/cfrs.el
(define-derived-mode cfrs-input-mode fundamental-mode "Child Frame Read String"
  "Simple mode for buffers displayed in cfrs's input frames."
  (add-hook 'post-command-hook #'cfrs--adjust-height nil :local)
  (add-hook 'window-selection-change-functions #'cfrs--detect-lost-focus nil :local)
  (display-line-numbers-mode -1))