From d9bb91f1e15070c6a9429834dc191e8d2c3dc228 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Fri, 30 Sep 2022 15:08:32 -0500 Subject: [PATCH] git completions: fix spelling of committer everywhere Some of the fixes are only for descriptions, others affect functionality. --- share/completions/git.fish | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/share/completions/git.fish b/share/completions/git.fish index 7896606c2..2bdb01afa 100644 --- a/share/completions/git.fish +++ b/share/completions/git.fish @@ -1110,8 +1110,8 @@ complete -F -c git -n '__fish_git_using_command am' -l include -d 'Pass --includ complete -f -c git -n '__fish_git_using_command am' -l reject -d 'Pass --reject to git apply' complete -x -f git -n '__fish_git_using_command am' -l patch-format -a 'mbox mboxrd stgit stgit-series hg' -d 'Specify the patch format' complete -f -c git -n '__fish_git_using_command am' -s i -l interactive -d 'Run interactively' -complete -f -c git -n '__fish_git_using_command am' -l commiter-date-is-author-date -d 'Treat commiter date as author date' -complete -f -c git -n '__fish_git_using_command am' -l ignore-date -d 'Treat author date as commiter date' +complete -f -c git -n '__fish_git_using_command am' -l committer-date-is-author-date -d 'Treat committer date as author date' +complete -f -c git -n '__fish_git_using_command am' -l ignore-date -d 'Treat author date as committer date' complete -f -c git -n '__fish_git_using_command am' -l skip -d 'Skip current patch' complete -x -c git -n '__fish_git_using_command am' -s S -l gpg-sign -a '(type -q gpg && __fish_complete_gpg_key_id gpg)' -d 'Sign commits with gpg' complete -f -c git -n '__fish_git_using_command am' -l no-gpg-sign -d 'Do not sign commits' @@ -2312,7 +2312,7 @@ set -l sortcommands branch for-each-ref tag function __fish_git_sort_keys echo -objectsize\tSize of branch or commit echo -authordate\tWhen the latest commit was actually made - echo -commiterdate\tWhen the branch was last committed or rebased + echo -committerdate\tWhen the branch was last committed or rebased echo -creatordate\tWhen the latest commit or tag was created echo -creator\tThe name of the commit author echo -objectname\tThe complete SHA1 @@ -2323,7 +2323,7 @@ function __fish_git_sort_keys echo -committer\tThe name of the person who committed latest echo -tagger\tThe name of the person who created the tag echo -authoremail\tThe email of the author of the latest commit - echo -commiteremail\tThe email of the person who committed last + echo -committeremail\tThe email of the person who committed last echo -taggeremail\tThe email of the person who created the tag end complete -f -c git -n "__fish_seen_subcommand_from $sortcommands" -l sort -d 'Sort results by' -a "(__fish_git_sort_keys)"