我最近切换到使用 emacs 作为 OS X 上的守护进程。我添加了一个 launchd plist,其中~/Library/LaunchAgents
包含以下内容:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>gnu.emacs.daemon</string>
<key>ProgramArguments</key>
<array>
<string>/Applications/Emacs.app/Contents/MacOS/Emacs</string>
<string>--daemon</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>ServiceDescription</key>
<string>Gnu Emacs Daemon</string>
<key>UserName</key>
<string>grant</string>
</dict>
</plist>
一切运行良好,除了在通过 打开新的 emacsclient 窗口后打开文件时出现的一个小问题emacsclient -c -n
。当我点击 时C-x C-f,它会从文件系统根目录而不是我的主目录启动,而启动 Emacs.app 时,它C-x C-f会从我的主目录启动。有没有办法将行为切换为从我的主目录而不是文件系统根目录启动?