jwiegley / use-package

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

Linter shows weird errors for use-package #958

Closed memeplex closed 1 year ago

memeplex commented 2 years ago

I cannot understand what's going on here:

image

I don't know a lot about macros, but maybe some kind of syntax descriptor or whatever provided by use-package is wrong. Or the expansion itself, although the code performs as expected, it's just the linter that goes nuts about it.

doolio commented 2 years ago

Try:

(use-package avy-jump
  :ensure avy
  :bind (("C-;" . avy-goto-char-2)
         ("C-:" . avy-goto-line)))
skangas commented 1 year ago

It seems like the above reply resolved this, so I'm closing this issue now.