Skip to content

Commit 0380beb

Browse files
authored
clean up autowrap (#12)
1 parent 2f077ae commit 0380beb

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

renderers/interactive.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import (
1212
"time"
1313
)
1414

15-
const resetAutoWrap = "\u001B[?7l"
15+
const disableAutoWrap = "\u001B[?7l"
16+
const enableAutoWrap = "\u001B[?7h"
1617
const defaultFrameBufSize = 38400 // 80 by 120 of 4 bytes UTF-8 characters
1718

1819
type InteractiveRenderer struct {
@@ -69,7 +70,7 @@ func (r *InteractiveRenderer) RenderMessage(entry *echelon.LogEntryMessage) {
6970
func (r *InteractiveRenderer) StartDrawing() {
7071
_ = console.PrepareTerminalEnvironment()
7172
// don't wrap lines since it breaks incremental redraws
72-
_, _ = r.out.WriteString(resetAutoWrap)
73+
_, _ = r.out.WriteString(disableAutoWrap)
7374
for !r.rootNode.HasCompleted() {
7475
r.DrawFrame()
7576
time.Sleep(r.config.RefreshRate)
@@ -80,6 +81,8 @@ func (r *InteractiveRenderer) StopDrawing() {
8081
r.rootNode.Complete()
8182
// one last redraw
8283
r.DrawFrame()
84+
// don't leave autowrap disabled in the terminal
85+
_, _ = r.out.WriteString(enableAutoWrap)
8386
}
8487

8588
func (r *InteractiveRenderer) DrawFrame() {

0 commit comments

Comments
 (0)