diff options
| author | Frederick Zhang <frederick888@tsundere.moe> | 2025-08-04 00:03:34 +0900 |
|---|---|---|
| committer | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2025-08-04 00:03:34 +0900 |
| commit | 6e6c12c81f3da547b52bf5cbaff929eb47e3561a (patch) | |
| tree | 9f186c8aaef3bf18e40c546b0af9047ca5566363 | |
| parent | 53821: add missing manpage name in cross reference (diff) | |
| download | zsh-6e6c12c81f3da547b52bf5cbaff929eb47e3561a.tar zsh-6e6c12c81f3da547b52bf5cbaff929eb47e3561a.tar.gz zsh-6e6c12c81f3da547b52bf5cbaff929eb47e3561a.tar.bz2 zsh-6e6c12c81f3da547b52bf5cbaff929eb47e3561a.tar.lz zsh-6e6c12c81f3da547b52bf5cbaff929eb47e3561a.tar.xz zsh-6e6c12c81f3da547b52bf5cbaff929eb47e3561a.tar.zst zsh-6e6c12c81f3da547b52bf5cbaff929eb47e3561a.zip | |
53825: fix regexp in in __git_extract_aliases
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Completion/Unix/Command/_git | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2025-08-04 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> + + * Frederick Zhang: 53825: Completion/Unix/Command/_git: fix + regexp in __git_extract_aliases + 2025-07-18 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> * 53821: Doc/Zsh/builtins.yo, Doc/Zsh/calsys.yo, Doc/Zsh/compctl.yo, diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 7c7b0d764..c31ca0d7c 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -6561,7 +6561,7 @@ __git_aliases () { (( $+functions[__git_extract_aliases] )) || __git_extract_aliases () { local -a tmp - tmp=(${${(0)"$(_call_program aliases "git config -z --get-regexp '^alias.'")"}#alias.}) + tmp=(${${(0)"$(_call_program aliases "git config -z --get-regexp '^alias\.'")"}#alias.}) if (( ${#tmp} > 0 )); then aliases=(${^tmp/$'\n'/:alias for \'}\') else |
