mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 06:41:42 +08:00
completions/git: Allow aliases with whitespace in the command
Fixes #5412.
This commit is contained in:
parent
99ba07354a
commit
081e14fd21
|
@ -445,7 +445,7 @@ end
|
||||||
# So instead, we store the aliases in global variables, named after the alias, containing the command.
|
# So instead, we store the aliases in global variables, named after the alias, containing the command.
|
||||||
# This is because alias:command is an n:1 mapping (an alias can only have one corresponding command,
|
# This is because alias:command is an n:1 mapping (an alias can only have one corresponding command,
|
||||||
# but a command can be aliased multiple times)
|
# but a command can be aliased multiple times)
|
||||||
git config -z --get-regexp 'alias\..*' | while read -lz alias command _
|
git config -z --get-regexp 'alias\..*' | while read -lz alias command
|
||||||
# Git aliases can contain chars that variable names can't - escape them.
|
# Git aliases can contain chars that variable names can't - escape them.
|
||||||
set alias (string replace 'alias.' '' -- $alias | string escape --style=var)
|
set alias (string replace 'alias.' '' -- $alias | string escape --style=var)
|
||||||
set -g __fish_git_alias_$alias $command
|
set -g __fish_git_alias_$alias $command
|
||||||
|
|
Loading…
Reference in New Issue
Block a user