mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-04 19:29:37 +00:00
Merge pull request from phillord/ensure-doc
Ensure doc GitHub-reference: https://github.com/jwiegley/use-package/issues/37
This commit is contained in:
commit
ed2b339783
1 changed files with 13 additions and 1 deletions
|
@ -238,6 +238,17 @@
|
|||
;; actual load. In this case, everything could be put inside `:init' and
|
||||
;; there would be no difference.
|
||||
;;
|
||||
;; * For package.el user
|
||||
;;
|
||||
;; You can use `use-package' to load packages from ELPA with package.el. This
|
||||
;; is particularly useful if you share your .emacs between several machines;
|
||||
;; the relevant packages will download automatically once placed in your
|
||||
;; .emacs. The `:ensure' key will install the package automatically if it is
|
||||
;; not already present.
|
||||
;;
|
||||
;; (use-package tex-site
|
||||
;; :ensure auctex)
|
||||
;;
|
||||
;; * For el-get users
|
||||
;;
|
||||
;; You can use `use-package' as a way to create source definitions for el-get.
|
||||
|
@ -411,7 +422,8 @@ For full documentation. please see commentary.
|
|||
:defines Define vars to silence byte-compiler.
|
||||
:load-path Add to `load-path' before loading.
|
||||
:diminish Support for diminish package (if it's installed).
|
||||
:idle adds a form to run on an idle timer"
|
||||
:idle adds a form to run on an idle timer
|
||||
:ensure loads package using package.el if necessary."
|
||||
(let* ((commands (plist-get args :commands))
|
||||
(pre-init-body (plist-get args :pre-init))
|
||||
(init-body (plist-get args :init))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue