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.
This commit is contained in:
Justin M. Keyes
2018-09-10 09:47:04 +02:00
parent 931e15471c
commit 31c3d54668
4 changed files with 2 additions and 19 deletions

View File

@@ -158,10 +158,7 @@ void redraw_win_later(win_T *wp, int type)
}
}
/*
* Force a complete redraw later. Also resets the highlighting. To be used
* after executing a shell command that messes up the screen.
*/
/// Forces a complete redraw later. Also resets the highlighting.
void redraw_later_clear(void)
{
redraw_all_later(CLEAR);