diff options
author | Teddy Wing | 2023-08-08 20:20:31 +0200 |
---|---|---|
committer | Teddy Wing | 2023-08-08 20:20:31 +0200 |
commit | 761e29c5fc91bda6776bac9e196da695d9038629 (patch) | |
tree | 2337f3ea4f24d104e26848897cc477d6bc4fe742 | |
parent | c214aeac877f9d3043f28d6f8215d5c5f0809f8e (diff) | |
download | code-review-761e29c5fc91bda6776bac9e196da695d9038629.tar.bz2 |
code-review.bash-completion: Add `gh-start` to subcommands
Realistically I should match based on the executable files available
that start with "code-review-", but this is how it works currently, so
it's less effort to add to what's already here.
-rw-r--r-- | code-review.bash-completion | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code-review.bash-completion b/code-review.bash-completion index 89bc0ab..658d251 100644 --- a/code-review.bash-completion +++ b/code-review.bash-completion @@ -17,7 +17,7 @@ function _code_review () { local cur - local subcommands="changed-files commits diff difftool log start stat" + local subcommands="changed-files commits diff difftool gh-start log start stat" COMPREPLY=() cur=${COMP_WORDS[COMP_CWORD]} |