Skip to content

Instantly share code, notes, and snippets.

@jwiegley
Created April 5, 2024 17:57
Show Gist options
  • Save jwiegley/9a677be50e57a05e63db3ba0a4bd5a02 to your computer and use it in GitHub Desktop.
Save jwiegley/9a677be50e57a05e63db3ba0a4bd5a02 to your computer and use it in GitHub Desktop.
(use-package macrostep
:bind (("C-c e m" . macrostep-expand)
("C-c e M" . macrostep-expand-use-package-minimally))
:preface
(defun macrostep-expand-use-package-minimally ()
(interactive)
(let ((use-package-expand-minimally t)
(use-package-compute-statistics nil))
(call-interactively 'macrostep-expand))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment