radian-software / radian

🍉 Dotfiles that marry elegance and practicality.
MIT License
495 stars 47 forks source link

consider "(load"-ing autoloads #405

Closed holgerschurig closed 6 years ago

holgerschurig commented 6 years ago

Currently straight.el is creating FOO-autoloads.el files that "(provide FOO-autoloads)" themselves. And I gess they get loaded with "(require FOO-autoloads").

However, this inflates the variable "features", it's now much harder to see which modules are actually loaded than before. BTW, package.el doesn't do this either.

I actually think that autoload files never depend on each other, so there is no need to "(require" them. Instead, you can simply (load "FOO-autoloads") them, or?

raxod502 commented 6 years ago

Can you file this issue against straight.el instead?

holgerschurig commented 6 years ago

Oops, sorry.