diff options
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -9,7 +9,7 @@ import ( "go.wit.com/gui" "go.wit.com/lib/debugger" "go.wit.com/lib/fhelp" - "go.wit.com/lib/gui/prep" + "go.wit.com/lib/protobuf/argvpb" ) /* @@ -180,7 +180,7 @@ type ConfigAddCmd struct { func (args) Version() string { // log.Info(me.sh.Version()) // return ARGNAME + " " + VERSION + " Built on " + BUILDTIME - return prep.StandardVersion(ARGNAME, VERSION, BUILDTIME) + return argvpb.StandardVersion(ARGNAME, VERSION, BUILDTIME) } func (args) Buildtime() (string, string) { @@ -240,7 +240,7 @@ func (args) Examples() string { } // sends the strings to bash or zsh that will be your options -func (a args) SendCompletionStrings(pb *prep.Auto) { +func (a args) SendCompletionStrings(pb *argvpb.Argv) { if pb.Cmd == "" { // these are base autocomplete strings matches := []string{"clean", "commit", "merge", "patch", "normal", "pull", "rebuild"} |
