我喜欢使用use-package
Emacs。除其他外,我的配置文件中有以下内容:
(use-package proced
:ensure t
:config
(proced-toggle-auto-update 1)
(general-define-key
:keymaps 'proced-mode-map
"j" 'next-line
"k" 'previous-line))
Flycheck 警告该函数proced-toggle-auto-update
在运行时可能不可用。但是,文档use-package
说明所有后续表单都在加载包后config:
进行评估。那么这个flycheck警告是误报吗?