about summary refs log tree commit diff stats
path: root/commands/exec.go
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-07-08 18:19:08 -0400
committerDrew DeVault <sir@cmpwn.com>2019-07-08 18:19:08 -0400
commit7ecc6f96de5864d76ea2a94123b11c9258791cc9 (patch)
tree338f4a6b747a67b0321cc746f8a7377ddc60af38 /commands/exec.go
parentc610c3cd9dd47c400e52c1858e987f5f32a7a45b (diff)
downloadaerc-7ecc6f96de5864d76ea2a94123b11c9258791cc9.tar.gz
Add :exec and :pipe -b(ackground)
Diffstat (limited to 'commands/exec.go')
-rw-r--r--commands/exec.go45
1 files changed, 45 insertions, 0 deletions
diff --git a/commands/exec.go b/commands/exec.go
new file mode 100644
index 0000000..72a563d
--- /dev/null
+++ b/commands/exec.go
@@ -0,0 +1,45 @@
+package commands
+
+import (
+	"errors"
+	"fmt"
+	"os/exec"
+	"time"
+
+	"git.sr.ht/~sircmpwn/aerc/widgets"
+
+	"github.com/gdamore/tcell"
+)
+
+type ExecCmd struct{}
+
+func init() {
+	register(ExecCmd{})
+}
+
+func (_ ExecCmd) Aliases() []string {
+	return []string{"exec"}
+}
+
+func (_ ExecCmd) Complete(aerc *widgets.Aerc, args []string) []string {
+	return nil
+}
+
+func (_ ExecCmd) Execute(aerc *widgets.Aerc, args []string) error {
+	if len(args) < 2 {
+		return errors.New("Usage: exec [cmd...]")
+	}
+	cmd := exec.Command(args[1], args[2:]...)
+	go func() {
+		err := cmd.Run()
+		if err != nil {
+			aerc.PushStatus(" "+err.Error(), 10*time.Second).
+				Color(tcell.ColorDefault, tcell.ColorRed)
+		} else {
+			aerc.PushStatus(fmt.Sprintf(
+				"%s: complete", args[0]), 10*time.Second).
+				Color(tcell.ColorDefault, tcell.ColorDefault)
+		}
+	}()
+	return nil
+}