mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix :defer-incrementally t
Should be the same as :defer-incrementally (<package-name>)
This commit is contained in:
@ -216,9 +216,9 @@ non-nil, return paths of possible modules, activated or otherwise."
|
||||
(defun use-package-handler/:defer-incrementally (name _keyword targets rest state)
|
||||
(use-package-concat
|
||||
`((doom-load-packages-incrementally
|
||||
',(if (listp targets)
|
||||
targets
|
||||
(list name))))
|
||||
',(if (equal targets '(t))
|
||||
(list name)
|
||||
targets)))
|
||||
(use-package-process-keywords name rest state)))
|
||||
|
||||
(defalias 'use-package-normalize/:after-call 'use-package-normalize-symlist)
|
||||
|
Reference in New Issue
Block a user