From a915cf92833dde7e7e85f78ec7a2fd3723b93f97 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Thu, 28 May 2020 13:02:09 -0400 Subject: [PATCH] Fix '> save' command --- internal/info/infobuffer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/info/infobuffer.go b/internal/info/infobuffer.go index 9c33cf32..6489232b 100644 --- a/internal/info/infobuffer.go +++ b/internal/info/infobuffer.go @@ -146,7 +146,7 @@ func (i *InfoBuf) DonePrompt(canceled bool) { h := i.History[i.PromptType] h[len(h)-1] = resp } - i.PromptCallback = nil + // i.PromptCallback = nil } i.Replace(i.Start(), i.End(), "") }