diff options
-rw-r--r-- | completion.bash | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/completion.bash b/completion.bash index 0b52d29c..3c1fd683 100644 --- a/completion.bash +++ b/completion.bash | |||
@@ -118,4 +118,6 @@ __complete_repo() { | |||
118 | return 0 | 118 | return 0 |
119 | } | 119 | } |
120 | 120 | ||
121 | complete -F __complete_repo repo | 121 | # Fallback to the default complete methods if we aren't able to provide anything |
122 | # useful. This will allow e.g. local paths to be used when it makes sense. | ||
123 | complete -F __complete_repo -o bashdefault -o default repo | ||