summaryrefslogtreecommitdiff
path: root/sendStrings.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 05:33:04 -0500
committerJeff Carr <[email protected]>2025-10-17 05:33:04 -0500
commit6294b7b53c94fa77ac8ef3ba466b1cf032bdc6a8 (patch)
treef8126d99754624409854f84742650b7e3652e01b /sendStrings.go
parent411226cf9df0814ff8e714958da87c853b519bc6 (diff)
dump old stuff
Diffstat (limited to 'sendStrings.go')
-rw-r--r--sendStrings.go42
1 files changed, 0 insertions, 42 deletions
diff --git a/sendStrings.go b/sendStrings.go
index 546746d..827e690 100644
--- a/sendStrings.go
+++ b/sendStrings.go
@@ -12,16 +12,6 @@ import (
"go.wit.com/log"
)
-// deprecate
-func (pb *Argv) Autocomplete3(sendthis []string) {
- pb.SendStrings(sendthis)
-}
-
-// deprecate
-func (pb *Argv) Autocomplete2(sendthis string) {
- pb.SendStrings(strings.Split(sendthis, " "))
-}
-
// the application must send a string "help run list"
func (pb *Argv) SendString(sendthis string) {
pb.SendStrings(strings.Split(sendthis, " "))
@@ -29,30 +19,6 @@ func (pb *Argv) SendString(sendthis string) {
// the application must send an array []string{"help", "run", "list"}
func (pb *Argv) SendStrings(parts []string) {
- /*
- dur := pb.Duration.AsDuration()
- if dur < time.Millisecond*200 {
- pb.Debug = true
- // pb.Debugf("TODO: show extended help here '%s' '%s' %v dur=%v\n", pb.Arg0, pb.Arg1, pb.Argv, config.FormatDuration(dur))
- // pb.PrintDebug()
- // fmt.Println(" ")
- if me.pp == nil {
- pb.Debugf("me.pp == nil")
- } else {
- pb.Debugf("me.pp != nil")
- if pb.Fast {
- // this means the user is pressing tab. no longer doing stderr
- } else {
- if pb.Cmd == "" {
- me.pp.WriteHelp(os.Stderr)
- } else {
- me.pp.WriteHelpForSubcommand(os.Stderr, pb.Cmd)
- }
- }
- }
- }
- */
-
// parts := strings.Split(sendthis, " ")
var all []string
for _, part := range parts {
@@ -68,14 +34,6 @@ func (pb *Argv) SendStrings(parts []string) {
all = append(all, part)
}
fmt.Printf("%s", strings.Join(all, " "))
- /*
- if dur > time.Millisecond*200 {
- if dur < time.Millisecond*800 {
- // fmt.Println("a b")
- fmt.Println(pb.Partial + " hello world")
- }
- }
- */
}
// try out a new name. also, this whole thing is dumb and needs to be redone