Fix set-colors

This commit is contained in:
Kovid Goyal 2022-09-01 09:54:40 +05:30
parent 5cf10023c9
commit f86ce03d3b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -26,8 +26,7 @@ func is_stream_response(serialized_response []byte) bool {
func do_chunked_io(io_data *rc_io_data) (serialized_response []byte, err error) {
serialized_response = make([]byte, 0)
lp, err := loop.New()
lp.NoAlternateScreen()
lp, err := loop.New(loop.NoAlternateScreen, loop.NoRestoreColors)
if err != nil {
return
}