From 31c3d5466832a19029b9815c53eacc3c726ff569 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Mon, 10 Sep 2018 09:47:04 +0200 Subject: UI/cleanup: Remove most redraw_later_clear() calls Vim :! may "mess up the screen" because of e.g. switching between cooked mode, but Nvim just uses pipes. So maybe we can avoid these redraw_later_clear() CYA calls. --- src/nvim/os_unix.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/nvim/os_unix.c') diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index e52adfa1a9..bd8a13e6c8 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -419,7 +419,6 @@ int mch_expand_wildcards(int num_pat, char_u **pat, int *num_file, xfree(tempname); // With interactive completion, the error message is not printed. if (!(flags & EW_SILENT)) { - redraw_later_clear(); // probably messed up screen msg_putchar('\n'); // clear bottom line quickly #if SIZEOF_LONG > SIZEOF_INT assert(Rows <= (long)INT_MAX + 1); -- cgit