Function: evil-make
evil-make is an interactive and byte-compiled function defined in
evil-commands.el.
Signature
(evil-make ARG)
Documentation
Call a build command in the current directory.
If ARG is nil this function calls recompile, otherwise it calls
compile passing ARG as build command.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-make (arg)
"Call a build command in the current directory.
If ARG is nil this function calls `recompile', otherwise it calls
`compile' passing ARG as build command."
(interactive "<sh>")
(if (and (fboundp 'recompile)
(not arg))
(recompile)
(compile arg)))