From fa0c585662ab4f96314fc6f0366b2da5ef0807dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Koutn=C3=BD?= Date: Wed, 22 May 2024 01:56:52 +0200 Subject: [PATCH] completions/git: Add `git branch --edit-description` (#10512) * completions/git: Add `git branch --edit-description` --- share/completions/git.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/share/completions/git.fish b/share/completions/git.fish index 209e6a3f2..6f47c42df 100644 --- a/share/completions/git.fish +++ b/share/completions/git.fish @@ -1272,6 +1272,7 @@ complete -f -c git -n '__fish_git_using_command branch' -l set-upstream-to -d 'S complete -f -c git -n '__fish_git_using_command branch' -l merged -d 'List branches that have been merged' complete -f -c git -n '__fish_git_using_command branch' -l no-merged -d 'List branches that have not been merged' complete -f -c git -n '__fish_git_using_command branch' -l unset-upstream -d 'Remove branch upstream information' +complete -f -c git -n '__fish_git_using_command branch' -l edit-description -d 'Edit branch description in editor' complete -f -c git -n '__fish_git_using_command branch' -l contains -d 'List branches that contain the specified commit' -xa '(__fish_git_commits)' complete -f -c git -n '__fish_git_using_command branch' -l no-contains -d 'List branches that don\'t contain the specified commit' -xa '(__fish_git_commits)'