我做了一個功能,運行pdflatex編譯器產生的當前編輯TEX文件的PDF文件elisp的接近*異步Shell命令*命令後窗口完成
(defun latex-compile()
"Runs pdflatex on current file"
(interactive)
(let ((file-name (shell-quote-argument (buffer-file-name))))
(async-shell-command (concat "pdflatex " file-name))))
是否有可能關閉窗口如果退出成功,該進程退出後是否退出*Async Shell Command*
?
這非常有幫助。非常感謝。 – plok 2013-07-18 17:13:08
@plok我做了一個更好的版本,可以在底部顯示錯誤,並在查看錯誤後單擊任何按鈕時關閉編譯窗口:http://pastebin.com/VGpEjCTG – user4035 2013-07-18 17:17:45