如何禁用 shell 对控制字符的拦截?

发布于 2024-08-17 15:31:58 字数 309 浏览 12 评论 0原文

我正在 UNIX 下用 Python 编写一个 Curses 应用程序。我想让用户能够使用 CY 从 Emacs 的杀戮环中拉出。

当然,问题是 CY 被我的 shell 捕获,然后将 SIGTSTP 发送到我的进程。此外,CZ 还会导致 SIGTSTP 被发送,因此捕获信号意味着 CY 和 CZ 是不可区分的(尽管即使没有这个,我能想到的唯一解决方案也非常hackish)。

我知道我所要求的是可能的(在 C 中,如果不是在 Python 中),因为 Emacs 做到了。如何禁用 shell 对从键盘发送的某些控制字符的特殊处理,并使相关字符出现在进程的标准输入上?

I'm writing a curses application in Python under UNIX. I want to enable the user to use C-Y to yank from a kill ring a la Emacs.

The trouble is, of course, that C-Y is caught by my shell which then sends SIGTSTP to my process. In addition, C-Z also results in SIGTSTP being sent, so catching the signal means that C-Y and C-Z are not distinguishable (though even without this the only solutions I can think of are extremely hackish).

I know what I'm asking is possible (in C if not in Python), since Emacs does it. How can I disable the shell's special handling of certain control characters sent from the keyboard and have the characters in question appear on the process' stdin?

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

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

发布评论

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

评论(2

笔芯 2024-08-24 15:31:58

请参阅 termios 模块和 termios(3) 手册页。

See the termios module, and the termios(3) man page.

滴情不沾 2024-08-24 15:31:58

对于基本功能,请使用 tty。例如,调用 tty.setraw(sys.stdin) 会将标准输入的终端置于原始模式。

对于更一般的情况,Python 附带了一个 termios 库,但您可能需要一些拥有 termios 经验以了解如何使用它。

或者,一种便宜的方法是使用 stty,它是 termios 的命令行界面。

For basic functionality, use tty. For example, calling tty.setraw(sys.stdin) will put standard input's terminal into raw mode.

For the more general case, Python comes with a termios library, but you probably need some experience with termios to know how to use it.

Alternatively, a cheap way is to shell out to stty, which is a command-line interface to termios.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文