Skip to content

Commit

Permalink
stop referencing termbox
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseduffield committed Apr 6, 2021
1 parent 6a6024e commit 1149dea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -368,7 +367,8 @@ func Safe(f func()) {
panicking := true
defer func() {
if panicking {
termbox.Close()
// TODO: close tcell
// termbox.Close()
}
}()

Expand Down

0 comments on commit 1149dea

Please sign in to comment.