Function: consult-narrow-help
consult-narrow-help is an interactive and byte-compiled function
defined in consult.el.
Signature
(consult-narrow-help)
Documentation
Print narrowing help as a minibuffer-message.
This command can be bound to a key in consult-narrow-map,
to make it available for commands with narrowing.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defun consult-narrow-help ()
"Print narrowing help as a `minibuffer-message'.
This command can be bound to a key in `consult-narrow-map',
to make it available for commands with narrowing."
(declare (completion ignore))
(interactive)
(consult--require-minibuffer)
(consult--minibuffer-message
(mapconcat (lambda (x)
(concat
(propertize (key-description (list (car x))) 'face 'consult-key)
" "
(propertize (cdr x) 'face 'consult-help)))
(plist-get consult--narrow-config :keys)
" ")))