From 4fc40274db42b140aa9632390627a0aa0a362785 Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Sun, 13 Sep 2020 12:11:18 -0700 Subject: [PATCH] use default bash complete --- src/cli/cli.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/cli/cli.go b/src/cli/cli.go index 2293be8d..b760f1c2 100644 --- a/src/cli/cli.go +++ b/src/cli/cli.go @@ -88,9 +88,6 @@ func Run() (err error) { app.EnableBashCompletion = true app.HideHelp = false app.HideVersion = false - app.BashComplete = func(c *cli.Context) { - fmt.Fprintf(c.App.Writer, "send\nreceive\relay") - } app.Action = func(c *cli.Context) error { // if trying to send but forgot send, let the user know if c.Args().First() != "" && utils.Exists(c.Args().First()) {