Skip to content
New issue

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

bind: takes a list #69

Open
buhtz opened this issue Nov 10, 2021 · 0 comments
Open

bind: takes a list #69

buhtz opened this issue Nov 10, 2021 · 0 comments

Comments

@buhtz
Copy link

buhtz commented Nov 10, 2021

Hello David, somebody reviewed my init.el which comes from your emacs-from-scratch. He told me that there are missing parenthesis in the :bind section of use-package.

This is your/my current version.


  :bind
  ([remap describe-function] . counsel-describe-function)
  ([remap describe-command] . helpful-command)
  ([remap describe-variable] . counsel-describe-variable)
  ([remap describe-key] . helpful-key))

But it should be

  :bind
  ( ([remap describe-function] . counsel-describe-function)
  ([remap describe-command] . helpful-command)
  ([remap describe-variable] . counsel-describe-variable)
  ([remap describe-key] . helpful-key)) )

Agree or disagree? What would you say? I have no idea! ;)
My emacs start without any error messages about missing parenthesis.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant