aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/vi.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/pending/vi.c')
-rw-r--r--toys/pending/vi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/pending/vi.c b/toys/pending/vi.c
index 31516b55..2beedf49 100644
--- a/toys/pending/vi.c
+++ b/toys/pending/vi.c
@@ -543,7 +543,7 @@ void vi_main(void)
//we dont get scroll log full of junk
tty_esc("?1049h");
tty_esc("H");
- xflush();
+ xflush(1);
draw_page();
while(1) {
key = scan_key(keybuf, -1);
@@ -821,7 +821,7 @@ static void draw_page()
tty_esc("0m");
} else tty_jump(cx_scr, cy_scr);
- xflush();
+ xflush(1);
}