在my.bash_profile
中,我使用:
export EDITOR=emacsclient
alias e='emacsclient -t'
当我使用git提交更改时,它将打开一个新的emacs窗口,但使用的是
emacs --daemon
。如何将默认Git编辑器设置为启用T标志的Emacs?
最佳答案
git config --global core.editor 'emacsclient -t -a=\"\"'
如果没有一个守护进程正在运行,这将启动一个守护进程。
您可能对引号有问题,它在my.gitconfig中显示为
[core]
editor = emacsclient -t -a=\\\"\\\"