help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: using use-package


From: Stefan Monnier
Subject: Re: using use-package
Date: Sat, 08 Aug 2015 19:24:21 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux)

> Putting in the core is rather some distance from promoting as the "one
> true way"

FWIW, lots of use-package is designed to work around flaws in packages.

E.g. the :load-path thingy should never be necessary since the package's
own autoloads should already take care of that.

Or to take another example from https://github.com/jwiegley/use-package:

   (use-package foo
     :init
     (setq foo-variable t)
     :config
     (foo-mode 1))

For any properly written foo-mode, the above can be replaced with

     (setq foo-variable t)
     (foo-mode 1)

and it should work just as well.


IOW, in many cases, it would be better for people to report the problem
as a bug rather than to reach for use-package.


        Stefan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]