From 03b3891d7326182b8fe145f5eb933b26b3f4fe6b Mon Sep 17 00:00:00 2001 From: Spenser Black Date: Mon, 24 Jan 2022 12:39:08 -0500 Subject: [PATCH] Add `git rebase --edit-todo` completion --- share/completions/git.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/share/completions/git.fish b/share/completions/git.fish index be8af7730..1affe02ed 100644 --- a/share/completions/git.fish +++ b/share/completions/git.fish @@ -1710,6 +1710,7 @@ complete -f -c git -n '__fish_git_using_command rebase' -a '(__fish_git_recent_c complete -f -c git -n '__fish_git_using_command rebase' -a '(__fish_git_tags)' -d Tag complete -f -c git -n '__fish_git_using_command rebase; and __fish_git_is_rebasing' -l continue -d 'Restart the rebasing process' complete -f -c git -n '__fish_git_using_command rebase; and __fish_git_is_rebasing' -l abort -d 'Abort the rebase operation' +complete -f -c git -n '__fish_git_using_command rebase; and __fish_git_is_rebasing' -l edit-todo -d 'Edit the todo list' complete -f -c git -n '__fish_git_using_command rebase' -l keep-empty -d "Keep the commits that don't change anything" complete -f -c git -n '__fish_git_using_command rebase; and __fish_git_is_rebasing' -l skip -d 'Restart the rebasing process by skipping the current patch' complete -f -c git -n '__fish_git_using_command rebase' -s m -l merge -d 'Use merging strategies to rebase'