File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ import (
12
12
"time"
13
13
)
14
14
15
- const resetAutoWrap = "\u001B [?7l"
15
+ const disableAutoWrap = "\u001B [?7l"
16
+ const enableAutoWrap = "\u001B [?7h"
16
17
const defaultFrameBufSize = 38400 // 80 by 120 of 4 bytes UTF-8 characters
17
18
18
19
type InteractiveRenderer struct {
@@ -69,7 +70,7 @@ func (r *InteractiveRenderer) RenderMessage(entry *echelon.LogEntryMessage) {
69
70
func (r * InteractiveRenderer ) StartDrawing () {
70
71
_ = console .PrepareTerminalEnvironment ()
71
72
// don't wrap lines since it breaks incremental redraws
72
- _ , _ = r .out .WriteString (resetAutoWrap )
73
+ _ , _ = r .out .WriteString (disableAutoWrap )
73
74
for ! r .rootNode .HasCompleted () {
74
75
r .DrawFrame ()
75
76
time .Sleep (r .config .RefreshRate )
@@ -80,6 +81,8 @@ func (r *InteractiveRenderer) StopDrawing() {
80
81
r .rootNode .Complete ()
81
82
// one last redraw
82
83
r .DrawFrame ()
84
+ // don't leave autowrap disabled in the terminal
85
+ _ , _ = r .out .WriteString (enableAutoWrap )
83
86
}
84
87
85
88
func (r * InteractiveRenderer ) DrawFrame () {
You can’t perform that action at this time.
0 commit comments