From 8492a21a51c107f743a32231746bf5d38e9b1ccd Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Mon, 14 Jan 2019 08:14:03 -0500 Subject: Send commands up to the top-level aerc widget --- widgets/account.go | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'widgets/account.go') diff --git a/widgets/account.go b/widgets/account.go index 8662c0c..54eb9e9 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -20,13 +20,14 @@ type AccountView struct { logger *log.Logger interactive ui.Interactive onInvalidate func(d ui.Drawable) + runCmd func(cmd string) error statusline *StatusLine statusbar *ui.Stack worker *types.Worker } -func NewAccountView( - conf *config.AccountConfig, logger *log.Logger) *AccountView { +func NewAccountView(conf *config.AccountConfig, + logger *log.Logger, runCmd func(cmd string) error) *AccountView { statusbar := ui.NewStack() statusline := NewStatusLine() @@ -63,6 +64,7 @@ func NewAccountView( dirlist: dirlist, grid: grid, logger: logger, + runCmd: runCmd, statusline: statusline, statusbar: statusbar, worker: worker, @@ -106,8 +108,12 @@ func (acct *AccountView) Event(event tcell.Event) bool { case *tcell.EventKey: if event.Rune() == ':' { exline := NewExLine(func(command string) { - acct.statusline.Push( - fmt.Sprintf("TODO: execute %s", command), 3*time.Second) + err := acct.runCmd(command) + if err != nil { + acct.statusline.Push( + fmt.Sprintf("Error: %v", err), 3*time.Second). + Color(tcell.ColorRed, tcell.ColorDefault) + } acct.statusbar.Pop() acct.interactive = nil }, func() { -- cgit v1.2.3