We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
N/A
zsh 5.9 (x86_64-pc-linux-gnu)
0.57.0 (0476a65f)
g='git'
autocd autopushd autoresume combiningchars correct extendedglob noflowcontrol histignorealldups histignoredups ignoreeof interactive login magicequalsubst monitor nonomatch pushdignoredups shinstdin zle
When a command is aliased, its alias form no longer produces the correct completion.
Related: #251
$cmd_word is an aliased command (i.e., g) while the $arguments hold the original input (g checkout) as is.
$cmd_word
g
$arguments
g checkout
fzf-zsh-completions/src/core/parser.zsh
Lines 3 to 8 in 4093db4
Completions for aliases should function again.
$ g checkout **<TAB>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
OS version
zsh version
awk version
jq version
fzf version
Command version(s)
Locale
Aliases (if applicable)
g='git'
Options
Installed zsh plugins (if applicable)
What happened?
When a command is aliased, its alias form no longer produces the correct completion.
Related: #251
$cmd_word
is an aliased command (i.e.,g
) while the$arguments
hold the original input (g checkout
) as is.fzf-zsh-completions/src/core/parser.zsh
Lines 3 to 8 in 4093db4
What did you expect to happen?
Completions for aliases should function again.
Steps to reproduce
$ g checkout **<TAB>
The text was updated successfully, but these errors were encountered: