Vim有makeprg变量。此变量采用程序名称,如果输入make,将执行该程序名称。 emacs中有类似内容吗?
感谢。
答案 0 :(得分:1)
变量compile-command
指定编译器程序,您可以根据需要自定义该程序。以下是M-x compile
和家人的手册页。
答案 1 :(得分:1)
我在Emacs中不知道make
命令,但有compile
:
Compile the program including the current buffer. Default: run `make'. Runs COMMAND, a shell command, in a separate process asynchronously with output going to the buffer `*compilation*'.
由compile
运行的命令由变量compile-command
定义,可以这样设置:
(setq compile-command "some command")
compile-command
的默认值为"make -k "
。