5

因此,当我尝试使用 Automator 服务打开新的 emacs(带有 spacemacs 的 GNU 版本 25.2)缓冲区时,我遇到了一些非常奇怪的行为。

在我的终端中,该命令emacsclient -a '' -c按预期工作,通过 emacsclient 打开一个新缓冲区。但是,当我在 Automator 中创建一个仅运行 ( /bin/bash) shell 脚本的服务时: emacsclient -a '' -c 我收到一条错误消息: The action “Run Shell Script” encountered an error: “emacsclient: could not get terminal name”

由于怀疑这是由于 Automator 没有使用某些默认PATH变量,我尝试了以下操作: PATH=/usr/local/bin:$PATH emacsclient -c 它产生了与以前相同的错误。

接下来我尝试 PATH=/usr/bin:/usr/local/bin export PATH; emacsclient -c 了它产生了一个不同的错误消息: The action “Run Shell Script” encountered an error: “emacsclient: invalid option -- c Try `emacsclient --help' for more information” 但是为什么我在我的终端中尝试那个脚本它也给出了一个类似的错误,这对我来说没有多大意义。

如果有人对如何解决此问题有任何建议,我将不胜感激。

4

1 回答 1

2

问题是 shell 脚本在 /usr/bin 中运行旧版本的 emacsclient,您需要在 Emacs.app/Contents/MacOS/bin/emacsclient 中运行那个。删除 PATH 行,您可以使用此处列出的解决方案在 automator 中运行 emacsclient运行 macOS 服务以使用 emacs 打开失败,并显示“emacsclient:无法获取终端名称 mac”

于 2018-03-10T09:25:44.777 回答