使用 bash tab-completion 忽略路径条目
我有两个命令,foo
和 foo-bar
,其中 foo
是 foo-bar
的符号链接。我希望能够输入 f
+TAB (假设这是路径上以 f
开头的唯一两个命令)并完成其中一个(意味着全名和后面的空格)。
但最终发生的情况是,由于 foo-bar
,它只完成了 foo
(没有空格)。显然,只需按空格键并不需要太多工作,但这会打断我的流程。
一些其他详细信息:
foo
和foo-bar
位于同一目录中。- 删除/移动 foo 不是一个选项(我隐藏了一些细节)。
有没有办法忽略特定的路径条目?
I have two commands, foo
and foo-bar
, where foo
is a symlink to foo-bar
. I want to be able to type f
+TAB (pretend these are the only two commands on the path that begin with f
) and have one of them be completed (meaning the full name and the space after).
What ends up happening though is that it completes to just foo
(no space) because of foo-bar
. It's obviously not much work to then just hit the space bar, but this interrupts my flow.
Some additional details:
foo
andfoo-bar
are in the same directory.- Deleting/moving
foo
isn't an option (I've hidden some details).
Is there a way to ignore a specific path entry?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用FIGNORE,尽管它有一些奇怪的属性。
FIGNORE 需要正确的后缀。因此,要忽略 foo-bar,其中任何一个都可以:
导入的东西不能尝试
FIGNORE=foo-bar
因为它不是一个正确的后缀。You use FIGNORE, although it has some strange properties.
FIGNORE requires a proper suffix. So to ignore foo-bar, any of these will work:
The import thing is not to try
FIGNORE=foo-bar
since it's not a proper suffix.尝试一下:
Give this a try: