From 1149dea4b2649095762690d8a1fa1a4194bccf91 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Tue, 9 Feb 2021 20:54:25 +1100 Subject: [PATCH] stop referencing termbox --- pkg/utils/utils.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/utils/utils.go b/pkg/utils/utils.go index edfd35e45..93925ad3a 100644 --- a/pkg/utils/utils.go +++ b/pkg/utils/utils.go @@ -14,7 +14,6 @@ import ( "time" "github.com/fatih/color" - "github.com/jesseduffield/termbox-go" ) // SplitLines takes a multiline string and splits it on newlines @@ -368,7 +367,8 @@ func Safe(f func()) { panicking := true defer func() { if panicking { - termbox.Close() + // TODO: close tcell + // termbox.Close() } }()