diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-03-17 16:19:15 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-03-17 16:19:15 -0400 |
commit | 589db742cb2af4b29607ceba62ceca38ec982f62 (patch) | |
tree | 0975f74796cb809cd1bd8d04ee0c7a052a45f3f5 /commands | |
parent | 9e28a02f6a4345ec7b5fdee68864610186f34e91 (diff) |
Move exline handling up to aerc, add :term
Diffstat (limited to 'commands')
-rw-r--r-- | commands/term.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/commands/term.go b/commands/term.go new file mode 100644 index 0000000..0a2aa3b --- /dev/null +++ b/commands/term.go @@ -0,0 +1,33 @@ +package commands + +import ( + "errors" + "os/exec" + + "git.sr.ht/~sircmpwn/aerc2/lib/ui" + "git.sr.ht/~sircmpwn/aerc2/widgets" +) + +func init() { + Register("term", Term) +} + +func Term(aerc *widgets.Aerc, args []string) error { + if len(args) > 2 { + return errors.New("Usage: term [<command>]") + } + term, err := widgets.NewTerminal(exec.Command(args[1], args[2:]...)) + if err != nil { + return err + } + grid := ui.NewGrid().Rows([]ui.GridSpec{ + {ui.SIZE_WEIGHT, 1}, + }).Columns([]ui.GridSpec{ + {ui.SIZE_EXACT, aerc.Config().Ui.SidebarWidth}, + {ui.SIZE_WEIGHT, 1}, + }) + grid.AddChild(term).At(0, 1) + aerc.NewTab(grid, "Terminal") + // TODO: update tab name when child process changes it + return nil +} |