Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法让 Emacs 在运行时默认提示我选择的二进制文件M-x ansi-term。它总是要求我,/bin/zsh但我zsh在不同的路径中进行了新安装。
M-x ansi-term
/bin/zsh
zsh
或者,让 Emacs 在我键入时运行我想要的二进制文件会很棒M-x my-ansi-term
M-x my-ansi-term
有多种方法可以指定默认 shell:
explicit-shell-file-name
.emacs
(setq explicit-shell-file-name "/bin/zsh")
ESHELL
SHELL
或者,让 Emacs 在我键入 Mx my-ansi-term 时运行我想要的二进制文件会很棒
请参阅Emacs 中的远程 ssh 连接。