aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-08-08 20:12:04 +0200
committerMichael Muré <batolettre@gmail.com>2018-08-08 20:31:31 +0200
commit929d7093644e4f6b83ef366b83b5b66be075736e (patch)
treed04549c39cc71d89d969da807d294d446020c16b /misc
parentb8e9e581b193d32684c685aa73a6890385f879c3 (diff)
downloadgit-bug-929d7093644e4f6b83ef366b83b5b66be075736e.tar.gz
bash completion: thanks to @tst2005, make the completion works for "git bug <command>"
Diffstat (limited to 'misc')
-rw-r--r--misc/bash_completion/git-bug5
-rw-r--r--misc/gen_bash_completion.go16
2 files changed, 5 insertions, 16 deletions
diff --git a/misc/bash_completion/git-bug b/misc/bash_completion/git-bug
index d8505868..bc831998 100644
--- a/misc/bash_completion/git-bug
+++ b/misc/bash_completion/git-bug
@@ -243,6 +243,11 @@ __git-bug_handle_word()
__git-bug_handle_word
}
+
+_git_bug() {
+ __start_git-bug "$@"
+}
+
_git-bug_close()
{
last_command="git-bug_close"
diff --git a/misc/gen_bash_completion.go b/misc/gen_bash_completion.go
index 3a75b0f5..8793556a 100644
--- a/misc/gen_bash_completion.go
+++ b/misc/gen_bash_completion.go
@@ -16,22 +16,6 @@ func main() {
fmt.Println("Generating bash completion file ...")
- //git := &cobra.Command{
- // Use: "git",
- // BashCompletionFunction: "qsdhjlkqsdhlsd",
- //}
- //
- //bug := &cobra.Command{
- // Use: "bug",
- // BashCompletionFunction: "ZHZLDHKLZDHJKL",
- //}
- //git.AddCommand(bug)
-
- //for _, sub := range commands.RootCmd.Commands() {
- // bug.AddCommand(sub)
- //}
-
- //err := git.GenBashCompletionFile(filepath)
err := commands.RootCmd.GenBashCompletionFile(filepath)
if err != nil {
log.Fatal(err)