在新的 xfce4 终端上以 256 色启动“emacs -nw”

在新的 xfce4 终端上以 256 色启动“emacs -nw”

我对使用此命令启动 emacs 有一点疑问

xfce4-终端-e“emacs-nw”

我在用着TERM=xterm-256色在我的 .bashrc 中,但它仅在我首先启动新的 xfce4 终端然后在两个单独的步骤中调用 emacs -nw 时才有效。

当然,我需要这个的原因是为了使用热键(lxde)在新终端中启动 emacs,并支持 256 色。我尝试了许多不同的解决方案(.sh 脚本等),但都没有奏效。

提前致谢。

答案1

使用

xfce4-terminal -e "emacs -nw"

你不是在运行bash— 而是直接运行emacs。因此,不使用你的 shell 初始化。

如果你想确保 bash 运行,你可以这样做

xfce4-terminal -e "bash -i -c 'emacs -nw'"

相关内容