diff options
author | John Wiegley <johnw@newartisans.com> | 2017-12-06 11:53:21 -0800 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2017-12-06 11:53:21 -0800 |
commit | 71fc224961510a56baff2e4686ccca484824f58d (patch) | |
tree | 8f04d679ffb7bdcade0ee741015da114bff954d8 /lisp/use-package | |
parent | beee6b8d4d9b77696adb0a66c71ae566f56c8941 (diff) | |
download | emacs-71fc224961510a56baff2e4686ccca484824f58d.tar.gz emacs-71fc224961510a56baff2e4686ccca484824f58d.tar.bz2 emacs-71fc224961510a56baff2e4686ccca484824f58d.zip |
Add documentation for `use-package-report'
Diffstat (limited to 'lisp/use-package')
-rw-r--r-- | lisp/use-package/use-package-core.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index fd7d56b271d..517671b87f1 100644 --- a/lisp/use-package/use-package-core.el +++ b/lisp/use-package/use-package-core.el @@ -863,6 +863,13 @@ representing symbols (that may need to be autloaded)." (setq use-package-statistics (make-hash-table))) (defun use-package-report () + "Show current statistics gathered about use-package declarations. +In the table that's generated, the status field has the following +meaning: + Configured :config has been processed (the package is loaded!) + Initialized :init has been processed (load status unknown) + Prefaced :preface has been processed + Declared the use-package declaration was seen" (interactive) (with-current-buffer (get-buffer-create "*use-package statistics*") (delete-region (point-min) (point-max)) |