Function: forge-read-topic-lift-limit
forge-read-topic-lift-limit is an interactive and byte-compiled
function defined in forge-topic.el.
Signature
(forge-read-topic-lift-limit)
Documentation
No longer limit completion candidates to active topics.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-topic.el
(defun forge-read-topic-lift-limit ()
"No longer limit completion candidates to active topics."
(interactive)
(when (and (minibufferp)
forge-limit-topic-choices)
(setq-local forge-limit-topic-choices nil)
(cond
((and (bound-and-true-p vertico-mode)
(boundp 'vertico--input)
(fboundp 'vertico--exhibit))
(setq vertico--input t)
(vertico--exhibit))
((and (bound-and-true-p helm-mode)
(fboundp 'helm-force-update))
(helm-force-update))
((minibuffer-completion-help (minibuffer--completion-prompt-end)
(point-max))))
(forge-read-topic--remove-prompt-hint)))