Variable: consult-bookmark-narrow
consult-bookmark-narrow is a customizable variable defined in
consult.el.
Value
((102 "File" bookmark-default-handler)
(104 "Help" help-bookmark-jump Info-bookmark-jump Man-bookmark-jump
woman-bookmark-jump)
(112 "Picture" image-bookmark-jump)
(100 "Docview" doc-view-bookmark-jump)
(109 "Mail" gnus-summary-bookmark-jump)
(115 "Shell" eshell-bookmark-jump shell-bookmark-jump)
(119 "Web" eww-bookmark-jump xwidget-webkit-bookmark-jump-handler)
(118 "VC Directory" vc-dir-bookmark-jump) (nil "Other"))
Documentation
Bookmark narrowing configuration.
Each element of the list must have the form (char name handlers...).
Source Code
;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defcustom consult-bookmark-narrow
`((?f "File" bookmark-default-handler)
(?h "Help" help-bookmark-jump Info-bookmark-jump
Man-bookmark-jump woman-bookmark-jump)
(?p "Picture" image-bookmark-jump)
(?d "Docview" doc-view-bookmark-jump)
(?m "Mail" gnus-summary-bookmark-jump)
(?s "Shell" eshell-bookmark-jump shell-bookmark-jump)
(?w "Web" eww-bookmark-jump xwidget-webkit-bookmark-jump-handler)
(?v "VC Directory" vc-dir-bookmark-jump)
(nil "Other"))
"Bookmark narrowing configuration.
Each element of the list must have the form (char name handlers...)."
:type '(alist :key-type character :value-type (cons string (repeat function))))