From 6f4c4be95288f83247c43e8c71218266019823ec Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sun, 28 Jan 2018 12:33:22 +0100 Subject: [PATCH] ex_diffpatch: don't need redraw_later(CLEAR), Nvim uses pipes --- src/nvim/diff.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/nvim/diff.c b/src/nvim/diff.c index a32ac645e3..e9ecf98653 100644 --- a/src/nvim/diff.c +++ b/src/nvim/diff.c @@ -941,9 +941,6 @@ void ex_diffpatch(exarg_T *eap) } #endif - // patch probably has written over the screen - redraw_later(CLEAR); - // Delete any .orig or .rej file created. STRCPY(buf, tmp_new); STRCAT(buf, ".orig");