diff options
| author | Jeff Carr <[email protected]> | 2025-10-21 06:51:09 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-21 06:51:09 -0500 |
| commit | ce8d34e70c9de0e00343890b065ae38fafba0eab (patch) | |
| tree | d675d1277c049feb24609fdb4cdadd0d856dc45a | |
| parent | 7ae3a23b0938c1e2b36c9f36cfb0d85ed90ac854 (diff) | |
Verbose() moved to ENV
| -rw-r--r-- | notsure.go | 10 | ||||
| -rw-r--r-- | theMagicOfAutocomplete.go | 1 |
2 files changed, 1 insertions, 10 deletions
@@ -15,16 +15,6 @@ type ArgsBash struct { } // maybe this is a good idea, maybe not -func (pb *Argv) Verbose() bool { - return true -} - -// maybe this is a good idea, maybe not -func Verbose() bool { - return true -} - -// maybe this is a good idea, maybe not func (pb *Argv) Gui() bool { log.Printf("CUR pb: %v\n", pb) log.Info("CUR ARGV:", pb.Real) diff --git a/theMagicOfAutocomplete.go b/theMagicOfAutocomplete.go index 321dbdd..592e765 100644 --- a/theMagicOfAutocomplete.go +++ b/theMagicOfAutocomplete.go @@ -42,6 +42,7 @@ func initAppname() { log.Printf("TIME initAppname() ERR=(%v) anyString=(%v) GetTime.BUILTIME=(%v) app.BUILDTIME=(%v)\n", err, anyString, BUILDTIME, app.BUILDTIME) } me.pb.AppInfo = app + me.pb.Argname = APPNAME // deprecate this } func Autocomplete(dest any) *Argv { |
