I like using use-package
for Emacs. Among other things, I have the following in my configuration file:
(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 warns that the function proced-toggle-auto-update
might not be available at run time. However, the documentation of use-package
states that all forms following config:
are evaluated after the package is loaded. Is this flycheck warning a false positive then?