[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
- Re: using use-package, (continued)
- Re: using use-package, Rusi, 2015/08/05
- Re: using use-package, Ian Zimmerman, 2015/08/05
- Message not available
- Re: using use-package, Rusi, 2015/08/05
- Re: using use-package, Ian Zimmerman, 2015/08/05
- Message not available
- Re: using use-package, Rusi, 2015/08/05
- Re: using use-package, Ian Zimmerman, 2015/08/05
- Message not available
- Re: using use-package, Rusi, 2015/08/06
- Re: using use-package, Grant Rettke, 2015/08/07
- Message not available
- Re: using use-package, Rusi, 2015/08/07
- Re: using use-package,
Stefan Monnier <=
- Re: using use-package, Grant Rettke, 2015/08/09
- Re: using use-package, Phillip Lord, 2015/08/10
- Re: using use-package, Stefan Monnier, 2015/08/10
- Re: using use-package, Phillip Lord, 2015/08/10
- Message not available
- Re: using use-package, Rusi, 2015/08/10
- Re: using use-package, John Wiegley, 2015/08/11
- Re: using use-package, Stefan Monnier, 2015/08/11
- Re: using use-package, Phillip Lord, 2015/08/11
- Re: using use-package, John Wiegley, 2015/08/12
- Message not available
- Re: using use-package, Sebastien Vauban, 2015/08/11