aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/terminal.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/terminal.go b/app/terminal.go
index 4814ff29..2527ef1a 100644
--- a/app/terminal.go
+++ b/app/terminal.go
@@ -84,7 +84,8 @@ func (term *Terminal) Draw(ctx *ui.Context) {
term.ctx = ctx
if !term.running && term.cmd != nil {
term.vterm.Attach(term.HandleEvent)
- if err := term.vterm.Start(term.cmd); err != nil {
+ w, h := ctx.Window().Size()
+ if err := term.vterm.StartWithSize(term.cmd, w, h); err != nil {
log.Errorf("error running terminal: %v", err)
term.closeErr(err)
return