We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When bind-keymap is t. :package pkg will load the pkg feature. when bind-keymap is nil :package pkg will convert to eval-after-load 'pkg.
:package pkg
pkg
eval-after-load 'pkg
This is ambiguity.
(leaf-keys ((some-map :package pkg ("key" . command))) nil 'bind-keymap nil) (leaf-keys ((some-map :package pkg ("key" . command))) nil nil nil)
:package always is expanded to the form eval-after-load.
:package
eval-after-load
For load pkg file when binding keymaps, some else keyword (:load-package :require) may be a good choice?
:load-package
:require
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
When bind-keymap is t.
:package pkg
will load thepkg
feature.when bind-keymap is nil
:package pkg
will convert toeval-after-load 'pkg
.This is ambiguity.
Issue leaf-block
Expected output from macroexpand-1 of the leaf-block
:package
always is expanded to the formeval-after-load
.For load pkg file when binding keymaps, some else keyword (
:load-package
:require
) may be a good choice?The text was updated successfully, but these errors were encountered: