编辑crontab时在终端中打开emacs


9

我已将设置emacs为我的默认编辑器/etc/profile。当我想emacs在终端中使用时。我用-nw选项打开它。crontab -e阻止它在窗口中打开时,我怎么有相同的行为?


“我在/ etc / profile中将emacs设置为默认编辑器”怎么办?
Ant6n

Answers:


12

你必须用

    export EDITOR="emacs -nw"

与引号,它应该可以正常工作。


7

如果您认为emacs每次启动都很慢,也可以使用:

export EDITOR="emacsclient -t"

但是,您必须使用以下方法启动emacs服务器:

emacs --daemon

2
EDITOR="emacsclient --alternate-editor= -t"如果需要,使用,emacsclient将以守护程序模式启动Emacs。
吉尔(Gilles)'所以
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.