zsh:comp: Don't sort git-{rebase,show,signoff}

Do not sort completion functions of git-{rebase,show,signoff}.
This commit is contained in:
2022-03-30 02:39:18 +02:00
parent 70b9a74029
commit 541ff31af4

View File

@@ -45,5 +45,8 @@ compdef _git-rebase git-signoff
# git before in the same session. # git before in the same session.
_git &>/dev/null || true _git &>/dev/null || true
# Do not sort `git checkout`s completion # Do not sort completion list
zstyle ":completion:*:git-checkout:*" sort false zstyle ":completion:*:git-checkout:*" sort false
zstyle ":completion:*:git-rebase:*" sort false
zstyle ":completion:*:git-show:*" sort false
zstyle ":completion:*:git-signoff:*" sort false