From 520eae817a54a324b038a41f7392ae8e23e97e73 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 9 Nov 2020 19:17:33 +0900 Subject: [PATCH] Remove print statement for debugging --- src/terminal.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/terminal.go b/src/terminal.go index 3c6960a..10b1bac 100644 --- a/src/terminal.go +++ b/src/terminal.go @@ -526,7 +526,6 @@ func (t *Terminal) parsePrompt(prompt string) (func(), int) { blankState := ansiOffset{[2]int32{int32(loc[0]), int32(loc[1])}, ansiState{-1, -1, tui.AttrClear}} if item.colors != nil { lastColor := (*item.colors)[len(*item.colors)-1] - fmt.Println(lastColor.offset[1], int32(loc[1])) if lastColor.offset[1] < int32(loc[1]) { blankState.offset[0] = lastColor.offset[1] colors := append(*item.colors, blankState)