jwiegley / use-package

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

Deferring load depends on declaration of special key? #1061

Closed JesusTorrado closed 1 year ago

JesusTorrado commented 1 year ago

In Emacs 29.1, profiling with esup.

This does not load the package at startup, as expected:

(use-package writeroom-mode
  :bind
  ([f11] . writeroom-mode)
)

But this does:

(use-package writeroom-mode
  :bind
  ("<f11>" . writeroom-mode)
)

Please, tell me I am not stupid and that it is some unexpected side effect :)

JesusTorrado commented 1 year ago

Apologies. I misinterpreted ESUP output. Checking use-package-report instead clearly shows that the package was not loaded.