Skip to content

Commit 901d615

Browse files
kraaigitster
authored andcommitted
bash-completion: Complete the values of color.interactive, color.ui, color.pager
Signed-off-by: Matt Kraai <[email protected]> Acked-by: Shawn O. Pearce <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 5cd12b8 commit 901d615

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

contrib/completion/git-completion.bash

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1196,10 +1196,14 @@ _git_config ()
11961196
__gitcomp "$(__git_merge_strategies)"
11971197
return
11981198
;;
1199-
color.branch|color.diff|color.status)
1199+
color.branch|color.diff|color.interactive|color.status|color.ui)
12001200
__gitcomp "always never auto"
12011201
return
12021202
;;
1203+
color.pager)
1204+
__gitcomp "false true"
1205+
return
1206+
;;
12031207
color.*.*)
12041208
__gitcomp "
12051209
normal black red green yellow blue magenta cyan white

0 commit comments

Comments
 (0)