Naoya Yamashita

Results 219 comments of Naoya Yamashita

`reference to free variable ‘quelpa-cache’` warning message is on my mind. please try again clean init.el and please tell use whole repro step?

No, I'm sorry. My English is usually broken, but I think it's better. But this time it's especially terrible. Anyway, all I want is to please tell us to reproduce...

Just interest. *the another Emacs package manager* is my first Emacs-lisp project.

`markdown-mode-map` should defined at `markdown-mode` package, you need to specify `:package` argument. ```emacs-lisp (use-package boon :commands (boon-mode) :bind ((:map boon-command-map ("C-l" . recenter-top-bottom) ("r" . swiper) ("/" . undo-tree-undo) ("?"...

Actually, you don't need to care about it. Your customizations will be successfully reflected and retained, whether before or after the package is loaded. This is not a use-package, but...

This eval is not permitted in use-package, but [leaf](https://github.com/conao3/leaf.el) can. ```elisp (defconst myregex "BLA") ;;=> myregex (setq leaf-expand-minimally t) ;;=> t (macroexpand '(leaf mymode :mode `(,myregex . mymode))) ;;=> (prog1...

the first issue is a feature request, I cannot comment on it, but the second one is an intended way I think. Please read https://github.com/jwiegley/use-package/issues/895#issuecomment-783305743 I'm bit surprised at this...

below `use-pacakge` will expand like this. ```elisp (macroexpand-all '(use-package origami :pin celpa ; or melpa :init nil)) ;;=> (progn ;; (use-package-pin-package 'origami "celpa") ;; (require 'origami nil nil)) ``` [use-package.el...

First of all, your grammar is invalid as Elisp ``` '(use-package foo :hook (bar-mode . foo-mode-hook :depth 80 :local t)) ;;=> Debugger entered--Lisp error: (invalid-read-syntax ". in wrong context") ;;...

[leaf](https://github.com/conao3/leaf.el)'s `:ensure` can interpret multiple symbol. And your general way (using variable) works perfectly. ```elisp (setq leaf-expand-minimally t) ;;=> t (macroexpand-1 '(leaf *startup :ensure ace-window ag avy anzu)) ;;=> (prog1...