oh-my-zsh and bash's tab completion
In the tab completion of oh-my-zsh and bash, we have typed a command (for example,cut
) and we want to a long option (for example,--delimiter
) which should have a option's arguments behind it .
If we want using tab completion to help us to input the long option, oh-my-zsh or bash will input the long option with equal sign (for example,--delimiter=
).
example
input following chars:
cut --d
if we using oh-my-zsh, and press TAB key,we'll get :
cut --delimiter=
if we using oh-my-fish, and press TAB key,we'll get:
cut --delimiter
the equal sign(=
) is changed into space sign().
Question
How do I change the tab completion's behavior of oh-my-fish to letting oh-my-fish's tab completion have equal sign(=
) after a long option which should be followed by arguments.