mirror of
https://github.com/ollama/ollama.git
synced 2025-03-18 05:41:43 +01:00
cmd: eliminate flickering with synchronized output
This commit is contained in:
parent
5930aaeb1a
commit
f9c7ead160
@ -83,11 +83,14 @@ func (p *Progress) render() {
|
||||
p.mu.Lock()
|
||||
defer p.mu.Unlock()
|
||||
|
||||
// buffer the terminal update to minimize cursor flickering
|
||||
// https://gitlab.gnome.org/GNOME/vte/-/issues/2837#note_2269501
|
||||
// buffer output to minimize flickering on all terminals
|
||||
p.buf.Reset()
|
||||
defer p.buf.WriteTo(p.w)
|
||||
|
||||
// eliminate flickering on terminals that support synchronized output
|
||||
fmt.Fprint(&p.buf, "\033[?2026h")
|
||||
defer fmt.Fprint(&p.buf, "\033[?2026l")
|
||||
|
||||
fmt.Fprint(&p.buf, "\033[?25l")
|
||||
defer fmt.Fprint(&p.buf, "\033[?25h")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user