从 shell 调用应用程序时如何更改 [TAB] 键的默认行为?

发布于 2024-09-13 05:50:00 字数 203 浏览 4 评论 0原文

shell 中 [TAB] 键的默认行为是自动完成或列出当前目录中的文件。如何在 shell 中为某些选定的应用程序覆盖此行为?

编辑:这与正在使用的应用程序无关,而是需要定制的 shell 环境! (感谢 Anders Abel 澄清了这一点)

The default behavior for the [TAB] key in the shell is to automatically auto-complete or list the files in the current directory. How to override this behavior in the shell for some chosen applications?

Edit: This is not related to the application that is being used, rather, it's the shell environment that needs to be customized! (Thanks to Anders Abel for clearing this point)

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

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

发布评论

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

评论(1

把回忆走一遍 2024-09-20 05:50:00

如果您想在创建用于启动程序的命令行时更改行为,则在程序内部这是不可能的。此时您的程序尚未启动,因此此时完全取决于 shell 如何解释 [TAB]。

一旦您的程序运行,您当然可以通过使用适当的 API 调用以任何您想要的方式处理 [TAB]。

If you want to change the behaviour when creating the command line for starting the program, that's impossible from within the program. At that point your program is not yet started, so it's entirely up to the shell how to interpret [TAB] at that point.

Once your program is running you can of course handle [TAB] in whatever way you want, by using an appropriate API call.

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