From 443838e06f84018846ccdc917525d2b30a4c37b0 Mon Sep 17 00:00:00 2001 From: Joe Lim <50560759+joelim-work@users.noreply.github.com> Date: Mon, 17 Jul 2023 10:19:04 +1000 Subject: [PATCH] Call `load` after shell-async commands (#1345) --- app.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app.go b/app.go index 57936b49..fc9bd113 100644 --- a/app.go +++ b/app.go @@ -591,6 +591,7 @@ func (app *app) runShell(s string, args []string, prefix string) { if err := cmd.Wait(); err != nil { log.Printf("running shell: %s", err) } + app.ui.exprChan <- &callExpr{"load", nil, 1} }() }