退出 emacs 后如何恢复 xterm 颜色

发布于 2024-09-24 10:57:45 字数 312 浏览 7 评论 0原文

当我从终端(xterm-color;本例中为 putty ssh 会话)使用 emacs 时,emacs 使用的字体颜色与我在 shell 中使用的字体颜色不同。这很好。但是,在我退出 emacs(或就此暂停它)后,颜色没有恢复。

在 emacs 会话结束后返回到 shell 时,我可以做些什么来恢复我的术语颜色吗?

我已经为我的 ls 命令添加了别名以添加 --color< /em> 选项,如果我运行该选项,如果列表显示任何具有“非默认”颜色的文件,它会恢复我的颜色,但这是恢复颜色的一种相当丑陋的方法。

When I use emacs from a terminal (xterm-color; a putty ssh session in this case) the font color used by emacs is different from the one I use in the shell. Which is fine. BUT, after I quit emacs (or suspend it for that matter) the colors are not restored.

Is there anything I can do to restore my term colors when returning to the shell after my emacs session?

I have aliased my ls command to add --color option, which if I run it restores my colors if the listing shows any files with "non-default" color, but that is a rather ugly way to get my colors back.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺渁∝ 2024-10-01 10:57:45

使用 emacs 的包装脚本,在 emacs 退出后运行“tput Reset”:

#!/bin/sh
emacs &
pid=$!
wait $pid
trap "kill $pid 2>/dev/null; tput reset" TERM INT EXIT

Use a wrapper script for emacs that runs "tput reset" after emacs exits:

#!/bin/sh
emacs &
pid=$!
wait $pid
trap "kill $pid 2>/dev/null; tput reset" TERM INT EXIT
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文