mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-12 15:36:53 -05:00
fix(corfu): prevent void-variable error
Although this error will not be triggered by most people, since auth-source is loaded by a lot of packages, it can still happen if you are debugging your configuration (e.g. enabling/disabling modules one-by-one).
This commit is contained in:
committed by
Henrik Lissner
parent
57f43e0953
commit
f79bb46c9b
@@ -28,7 +28,8 @@ use the minibuffer such as `query-replace'.")
|
|||||||
('aggressive
|
('aggressive
|
||||||
(not (or (bound-and-true-p mct--active)
|
(not (or (bound-and-true-p mct--active)
|
||||||
(bound-and-true-p vertico--input)
|
(bound-and-true-p vertico--input)
|
||||||
(eq (current-local-map) read-passwd-map)
|
(and (featurep 'auth-source)
|
||||||
|
(eq (current-local-map) read-passwd-map))
|
||||||
(and (featurep 'helm-core) (helm--alive-p))
|
(and (featurep 'helm-core) (helm--alive-p))
|
||||||
(and (featurep 'ido) (ido-active))
|
(and (featurep 'ido) (ido-active))
|
||||||
(where-is-internal 'minibuffer-complete
|
(where-is-internal 'minibuffer-complete
|
||||||
|
Reference in New Issue
Block a user