jwiegley / use-package

A use-package declaration for simplifying your .emacs
https://jwiegley.github.io/use-package
GNU General Public License v3.0
4.39k stars 259 forks source link

Bind-key: add command descriptions support #935

Open a13 opened 3 years ago

a13 commented 3 years ago

define-key allows adding descriptions to commands, like

(define-key map map '("Foo Bar Something" . foo-bar))

is it possible to add the possibility to use such syntax in use-package?

like

(use-package smart-comment
  :ensure t
  :bind ("M-;" smart-comment "Add a comment smartly"))