gpt4 book ai didi

shell - 在 emacs 中使用 ansi-term 时出现换行符问题

转载 作者:行者123 更新时间:2023-12-04 13:22:26 25 4
gpt4 key购买 nike

我正在尝试在 emacs 中使用 ansi-term(配置为 tcsh shell)。我看到显示换行符的一些问题。如果我从终端(ansi-term)尝试以下操作,我会得到正确的输出:

myterm > echo "Line1"; echo "Line2"; echo "Line3";    
Line1
Line2
Line3
myterm >

但是,如果我尝试将相同的行放在 shell 脚本中并尝试从 ansi-term 执行脚本,则会得到错误的输出

脚本:(测试)
#!/usr/bin/env tcsh
echo "Line1"; echo "Line2"; echo "Line3";

运行脚本(测试):
myterm > ./test
Line1
Line2
Line3
myterm >

注意:/usr/bin/env tcsh 确实指向正确的 shell(它与我在调用 ansi-term 时使用的 shell 相同)。同样从 gnome-terminal 执行脚本也会显示正确的输出。
我也尝试过设置以下变量,但没有解决我的问题:
(set-terminal-coding-system 'utf-8-unix)
(setq default-process-coding-system '((utf-8-unix . utf-8-unix)))

最佳答案

如果您设置 stty onlcr在您的脚本中,您将获得所需的行为。将命令翻译成英文可能会说: s tty Ø 输出 ew l ine as c arriage- r 返回和换行符。

这当然是一种解决方法,因为默认情况下应设置此选项。我可以从 stty -a 的输出中看到您在评论中表示它是在您的 ansi-term 中运行的 tcsh 中设置的。我怀疑 ansi-term 和您的 shell 脚本行为不同的一个可能原因是 term.el 中的以下几行

    (apply 'start-process name buffer
"/bin/sh" "-c"
(format "stty -nl echo rows %d columns %d sane 2>/dev/null;
if [ $1 = .. ]; then shift; fi; exec \"$@\""
term-height term-width)
".."
command switches)))
stty上面的命令实际上设置了 onlcr两次,因为复合选项 -nl转换为 icrnl -inlcr -igncr onlcr -ocrnl -onlretsane选项转换为 cread -ignbrk brkint -inlcr -igncr icrnl -iutf8 -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0 isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt echoctl echoke
另一个可能的原因:对于非登录 shell,tcsh 只会读取 /etc/csh.cshrc或者 ~/.tcshrc~/.cshrc当它启动时,但对于登录 shell,它会读取许多其他文件,包括 /etc/csh.login ~/.history$histfile 的值- 您应该咨询 man page有关完整的详细信息,包括它读取内容的确切顺序。

关于shell - 在 emacs 中使用 ansi-term 时出现换行符问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36851632/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com