我刚刚在 emacs24 中设置了Multi-term,我正在尝试将其配置为能够打开 multi-term running eshell。
我该怎么做,将 eshell 指定为 shell 程序?
例如,我正在尝试使用 eshell 创建等效项:
(defun multi-term-bash ()
"Make a multi-term buffer running bash."
(interactive)
(let ((multi-term-program "/bin/bash"))
(multi-term)))