如何禁用 shell 对控制字符的拦截?
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅
termios
模块和termios(3)
手册页。See the
termios
module, and thetermios(3)
man page.对于基本功能,请使用
tty
。例如,调用 tty.setraw(sys.stdin) 会将标准输入的终端置于原始模式。对于更一般的情况,Python 附带了一个 termios 库,但您可能需要一些拥有 termios 经验以了解如何使用它。
或者,一种便宜的方法是使用
stty
,它是 termios 的命令行界面。For basic functionality, use
tty
. For example, callingtty.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.