ZSH 中每执行完一个命令后都要重置终端

ZSH 中每执行完一个命令后都要重置终端

我在 KDE 中使用 Konsole + ZSH,打开了多个选项卡。在一些选项卡中,我运行不同的程序——带有 ipdb 和其他程序的 Python 脚本。有时我无法再输入新行——按Enter只会打印^M

我看见这个答案并且我认为 ipdb 更改了一些终端设置,当我按下Ctrl+C或中断它时,这些设置不会恢复Ctrl+\

$ stty -a
speed 38400 baud; rows 46; columns 180; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; 
swtch = <undef>; start = ^Q; stop = ^S; susp = <undef>; rprnt = ^R; werase = ^W;
lnext = <undef>; flush = ^O; min = 1; time = 0;
-parenb -parodd -cmspar cs8 -hupcl -cstopb cread -clocal -crtscts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr -icrnl -ixon -ixoff 
-iuclc -ixany -imaxbel iutf8
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

$ pip uninstall frozendict
Uninstalling frozendict:
...
Proceed (y/n)? ^M

另一个运行正常的终端具有以下设置:

$ stty -a
speed 38400 baud; rows 46; columns 180; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; 
swtch = <undef>; start = ^Q; stop = ^S; susp = <undef>; rprnt = ^R; werase = ^W;
lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd -cmspar cs8 -hupcl -cstopb cread -clocal -crtscts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl -ixon -ixoff 
-iuclc -ixany -imaxbel iutf8
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

所以我在思考如何解决这个问题。

我可以以某种方式注入stty icrnl在执行命令后执行的命令,但我宁愿恢复所有设置而不仅仅是icrnl。但reset速度很慢。

所以我的问题是:在 ZSH 中执行命令后如何执行某些操作以及执行什么 --stty icrnl或者reset? 或者还有其他解决方案?

或者有没有办法禁止禁用icrnl标志?

答案1

这个帖子很有帮助,所以我把它放进了.zshrc

precmd()
{
    stty sane
}

相关内容