aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/use-package/use-package-core.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el
index 83b9b291345..c18877d5e66 100644
--- a/lisp/use-package/use-package-core.el
+++ b/lisp/use-package/use-package-core.el
@@ -1548,9 +1548,11 @@ this file. Usage:
1548 `:magic-fallback', or `:interpreter'. This can be an integer, 1548 `:magic-fallback', or `:interpreter'. This can be an integer,
1549 to force loading after N seconds of idle time, if the package 1549 to force loading after N seconds of idle time, if the package
1550 has not already been loaded. 1550 has not already been loaded.
1551:after Defer loading of a package until after any of the named 1551:after Delay the use-package declaration until after the named modules
1552 features are loaded. 1552 have loaded. Once load, it will be as though the use-package
1553:demand Prevent deferred loading in all cases. 1553 declaration (without `:after') had been seen at that moment.
1554:demand Prevent the automatic deferred loading introduced by constructs
1555 such as `:bind' (see `:defer' for the complete list).
1554 1556
1555:if EXPR Initialize and load only if EXPR evaluates to a non-nil value. 1557:if EXPR Initialize and load only if EXPR evaluates to a non-nil value.
1556:disabled The package is ignored completely if this keyword is present. 1558:disabled The package is ignored completely if this keyword is present.