Closed rgrinberg closed 5 years ago
was there a reason why these autoloads were absent before?
Yes. Autoloads are not free. When using package.el
, the file lispy-autoloads.el
is always loaded. The file by itself does nothing more than point that you need to (require 'lispy)
after you do M-x lispy-mode
.
The more autoloads a package has, the more LISP code that needs to be ran in lispy-autoloads.el
. The only command that's reasonable to include in the M-x list is lispy-mode
. All other code, like lispyville
can simply say (require 'lispy)
.
lispyville in particular binds these to some keys. was there a reason why these autoloads were absent before?