From 57984c3eef2f2f4f9e4f49736ecbff1624de014b Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Wed, 25 Feb 2026 10:58:15 +0000 Subject: [PATCH] Add bash completions for gitshow and gitshowview The gitshow and gitshowview commands were added but were missing their bash completion registrations. They use the same completion function (_gitdiff) as gitdiff/gitdiffview since they accept the same filterdiff/patchview options. Fixes: #139 --- bash-completion-patchutils | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bash-completion-patchutils b/bash-completion-patchutils index 9b7af811..9490020c 100644 --- a/bash-completion-patchutils +++ b/bash-completion-patchutils @@ -452,3 +452,5 @@ complete -F _gitdiff gitdiff complete -F _svndiff svndiff complete -F _gitdiffview gitdiffview complete -F _svndiffview svndiffview +complete -F _gitdiff gitshow +complete -F _gitdiff gitshowview