diff options
Diffstat (limited to 'lisp/use-package')
-rw-r--r-- | lisp/use-package/bind-key.el | 5 | ||||
-rw-r--r-- | lisp/use-package/use-package-core.el | 4 | ||||
-rw-r--r-- | lisp/use-package/use-package-ensure.el | 4 |
3 files changed, 10 insertions, 3 deletions
diff --git a/lisp/use-package/bind-key.el b/lisp/use-package/bind-key.el index 9ebb859a359..9b9fc3531c4 100644 --- a/lisp/use-package/bind-key.el +++ b/lisp/use-package/bind-key.el @@ -103,7 +103,10 @@ (defgroup bind-key nil "A simple way to manage personal keybindings." - :group 'emacs) + :group 'keyboard + :group 'convenience + :link '(emacs-commentary-link :tag "Commentary" "bind-key.el") + :version "29.1") (defcustom bind-key-column-widths '(18 . 40) "Width of columns in `describe-personal-keybindings'." diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index ff4e03c8627..5ebe6576190 100644 --- a/lisp/use-package/use-package-core.el +++ b/lisp/use-package/use-package-core.el @@ -63,7 +63,9 @@ (defgroup use-package nil "A `use-package' declaration for simplifying your `.emacs'." - :group 'initialization) + :group 'initialization + :link '(custom-manual "(use-package) Top") + :version "29.1") (defconst use-package-version "2.4.4" "This version of `use-package'.") diff --git a/lisp/use-package/use-package-ensure.el b/lisp/use-package/use-package-ensure.el index c9cc6e70c51..bbb8e4175b8 100644 --- a/lisp/use-package/use-package-ensure.el +++ b/lisp/use-package/use-package-ensure.el @@ -30,7 +30,9 @@ (defgroup use-package-ensure nil "Support for :ensure and :pin keywords in `use-package' declarations." - :group 'use-package) + :group 'use-package + :link '(custom-manual "(use-package) Installing packages") + :version "29.1") (eval-when-compile (declare-function package-installed-p "package") |