Запустите программу из Emacs и не ждите вывода
Как заставить Emacs запустить программу и не ждать вывода / ответа? Я пытался открыть PDF во внешней программе:
(shell-command (concat "start sumatrapdf " (shell-quote-argument path) " -page " search))))
Но он не будет открывать другие файлы, пока не будет закрыт существующий процесс sumatrapdf. Я устал async-shell-command
, но он открывает новый буфер с выводом Async, который мне не нужен.
Как правильно обращаться с файлами во внешних программах?
2 ответа
start-process
функция может справиться с этим:
(start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS)
Start a program in a subprocess. Return the process object for it.
NAME is name for process. It is modified if necessary to make it unique.
BUFFER is the buffer (or buffer name) to associate with the process.
Process output (both standard output and standard error streams) goes
at end of BUFFER, unless you specify an output stream or filter
function to handle the output. BUFFER may also be nil, meaning that
this process is not associated with any buffer.
PROGRAM is the program file name. It is searched for in `exec-path'
(which see). If nil, just associate a pty with the buffer. Remaining
arguments are strings to give program as arguments.
If you want to separate standard output from standard error, invoke
the command through a shell and redirect one of them using the shell
syntax.
Если вы не хотите связывать bufer с открытым процессом - pass nil
в качестве аргумента БУФЕР
Увидеть C-h k M-!
... Если COMMAND заканчивается амперсандом, выполнить его асинхронно. Вывод появляется в буфереAsync Shell Command. Этот буфер находится в режиме оболочки....
IOW, M-! my_command --opt=foo arg1 arg2 &
начнет my_command
и создать *Async Shell Command*
буфер с my_command
работает в нем, но Emacs сразу же вернет вам контроль.