Is it possible to copy the tab completion of a com

2019-07-10 05:58发布

Let's say I have a bash shell function named magic. I want to define a tab completion function _magic which would allow magic to piggyback on the tab completion functions of any given command (if available). In other words, I want magic to be able to do something like this:

~ $ magic git ... <search for _git and use it if found>
~ $ magic cd ... <search for _cd and use it if found>
~ $ magic some-cmd ... <search for _some-cmd and use it if found>

I can't seem to find anything online that would help me achieve this using compgen, complete etc. Is this even possible? Thanks in advance.

1条回答
三岁会撩人
2楼-- · 2019-07-10 06:50

There are many such (pseudo?) commands, that need this. e.g. time, nice, strace etc.
They all use the same command completion: _command. So, don't re-invent the wheel. :)

Try running this in your bash terminal, if this work:

complete -F _command magic
查看更多
登录 后发表回答