Forge not loading automatically when deferring use-package #834
-
|
Forge is not loading automatically when using Can be fixed by explicitly requiring forge from magit but doesn't feel like an elegant solution. Am I missing something? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
I would assume that (use-package magit :bind ("C-c g" . 'magit-status))
(use-package forge :after magit :defer nil)works. If it does and you feel that you shouldn't have to add that, then take it up with the maintainers of |
Beta Was this translation helpful? Give feedback.
I would assume that
works. If it does and you feel that you shouldn't have to add that, then take it up with the maintainers of
use-package. Looking at the docstrings ofuse-packageanduse-package-always-defer, I feel this works as advertised. You could argue that by "always defer" you obviously meant "... except when already 'deferred until after'", because that's "another form of 'deferred'". Then again, the option is nameduse-package-always-defer.