static void diff_mark_adjust_tp(tabpage_T *tp, int idx, linenr_T line1, linenr_T line2, long amount, long amount_after);
static void diff_check_unchanged(tabpage_T *tp, diff_T *dp);
static int diff_check_sanity(tabpage_T *tp, diff_T *dp);
-static void diff_redraw(int dofold);
static int check_external_diff(diffio_T *diffio);
static int diff_file(diffio_T *diffio);
static int diff_equal_entry(diff_T *dp, int idx1, int idx2);
if (tp == curtab)
{
- diff_redraw(TRUE);
+ // Don't redraw right away, this updates the diffs, which can be slow.
+ need_diff_redraw = TRUE;
/* Need to recompute the scroll binding, may remove or add filler
* lines (e.g., when adding lines above w_topline). But it's slow when
/*
* Mark all diff buffers in the current tab page for redraw.
*/
- static void
+ void
diff_redraw(
int dofold) // also recompute the folds
{
win_T *wp;
int n;
+ need_diff_redraw = FALSE;
FOR_ALL_WINDOWS(wp)
if (wp->w_p_diff)
{
if (disable_fold_update > 0)
return;
+#ifdef FEAT_DIFF
+ if (need_diff_redraw)
+ // will update later
+ return;
+#endif
/* Mark all folds from top to bot as maybe-small. */
(void)foldFind(&wp->w_folds, top, &fp);
EXTERN int must_redraw INIT(= 0); // type of redraw necessary
EXTERN int skip_redraw INIT(= FALSE); // skip redraw once
EXTERN int do_redraw INIT(= FALSE); // extra redraw once
+#ifdef FEAT_DIFF
+EXTERN int need_diff_redraw INIT(= 0); // need to call diff_redraw()
+#endif
EXTERN int need_highlight_changed INIT(= TRUE);
void diff_buf_add(buf_T *buf);
void diff_invalidate(buf_T *buf);
void diff_mark_adjust(linenr_T line1, linenr_T line2, long amount, long amount_after);
+void diff_redraw(int dofold);
int diff_internal(void);
void ex_diffupdate(exarg_T *eap);
void ex_diffpatch(exarg_T *eap);