1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
package main
import (
"fmt"
"os"
"path/filepath"
"sync"
"github.com/spf13/cobra"
"github.com/MichaelMure/git-bug/commands"
)
func main() {
fmt.Println("Generating completion files ...")
tasks := map[string]func(*cobra.Command) error{
"Bash": genBash,
"Fish": genFish,
"PowerShell": genPowerShell,
"ZSH": genZsh,
}
var wg sync.WaitGroup
for name, f := range tasks {
wg.Add(1)
go func(name string, f func(*cobra.Command) error) {
defer wg.Done()
root := commands.NewRootCommand()
err := f(root)
if err != nil {
fmt.Printf(" - %s: %v\n", name, err)
return
}
fmt.Printf(" - %s: ok\n", name)
}(name, f)
}
wg.Wait()
}
func genBash(root *cobra.Command) error {
cwd, err := os.Getwd()
if err != nil {
return err
}
f, err := os.Create(filepath.Join(cwd, "misc", "bash_completion", "git-bug"))
if err != nil {
return err
}
defer f.Close()
// Custom bash code to connect the git completion for "git bug" to the
// git-bug completion for "git-bug"
_, err = f.WriteString(`#TODO: completion code to map "git bug" to "git-bug"`)
if err != nil {
return err
}
return root.GenBashCompletionV2(f, true)
}
func genFish(root *cobra.Command) error {
cwd, err := os.Getwd()
if err != nil {
return err
}
dir := filepath.Join(cwd, "misc", "fish_completion", "git-bug")
return root.GenFishCompletionFile(dir, true)
}
func genPowerShell(root *cobra.Command) error {
cwd, err := os.Getwd()
if err != nil {
return err
}
path := filepath.Join(cwd, "misc", "powershell_completion", "git-bug")
return root.GenPowerShellCompletionFile(path)
}
func genZsh(root *cobra.Command) error {
cwd, err := os.Getwd()
if err != nil {
return err
}
path := filepath.Join(cwd, "misc", "zsh_completion", "git-bug")
return root.GenZshCompletionFile(path)
}
|