区分 ncurses 中的 alt 和 esc 按键

发布于 2024-11-17 04:50:47 字数 88 浏览 3 评论 0原文

我正在 Linux 中使用 ncurses 库开发一个 C 应用程序。我的程序无法区分 Alt 和 Esc 按键。都返回 27! 你能帮我如何区分这两者吗? 谢谢

I am developing a C application using ncurses library in linux. my program cant distinguish between Alt and Esc keypresses. both return 27!
can you help me how I can distinguish between the two?
thank you

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

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

发布评论

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

评论(2

软甜啾 2024-11-24 04:50:47

您需要在 ^[ 之后加入短暂的延迟,以便查看是否有更多字符传入。如果没有,则已按下 Esc

You need to incorporate a short delay after the ^[ in order to see if there are further characters incoming. If not, then Esc has been pressed.

空气里的味道 2024-11-24 04:50:47

看一下这里:

NCurses 和 ESC、ALT 键

现在无法尝试, 尽管。希望有帮助。

Take a look here:

NCurses and ESC,ALT keys

Can't try it right now, though. Hope it helps.

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