From c84e2eeac1a898ea20bee05a1e3a0a1a792f6fe0 Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Fri, 14 Oct 2022 23:14:49 +0200 Subject: [PATCH] completions/git: Fix option This was typoed in bef706b8f181fce99c340d0eb179b6fa707f0a00 --- share/completions/git.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/completions/git.fish b/share/completions/git.fish index 06bd96c19..45ef8c562 100644 --- a/share/completions/git.fish +++ b/share/completions/git.fish @@ -1124,7 +1124,7 @@ complete -F -c git -n '__fish_git_using_command checkout' -n 'contains -- -- (co complete -f -c git -n __fish_git_needs_command -a checkout -d 'Checkout and switch to a branch' # The following dynamic, order-preserved (-k) completions will be shown in reverse order (see #9221) -complete -f -c git -n '__fish_git_using_command checkout' -n 'not contains -- -- (commandline -opc)' -ka '(__fish_git_recent_commits --kall)' +complete -f -c git -n '__fish_git_using_command checkout' -n 'not contains -- -- (commandline -opc)' -ka '(__fish_git_recent_commits --all)' complete -f -c git -n '__fish_git_using_command checkout' -n 'not contains -- -- (commandline -opc)' -ka '(__fish_git_tags)' -d Tag complete -f -c git -n '__fish_git_using_command checkout' -n 'not contains -- -- (commandline -opc)' -ka '(__fish_git_heads)' -d Head complete -f -c git -n '__fish_git_using_command checkout' -n 'not contains -- -- (commandline -opc)' -ka '(__fish_git_unique_remote_branches)' -d 'Unique Remote Branch'