* - at least 'scrolloff' lines above and below the cursor
*/
validate_cheight();
- used = curwin->w_cline_height;
+ used = curwin->w_cline_height; /* includes filler lines above */
if (curwin->w_cursor.lnum < curwin->w_topline)
scrolled = used;
new_topline = top + 1;
#ifdef FEAT_DIFF
- /* count filler lines of the cursor window as context */
- i = diff_check_fill(curwin, curwin->w_cursor.lnum);
- used += i;
- extra += i;
+ /* used already contains the number of filler lines above, don't add it
+ * again.
+ * TODO: if filler lines above new top are to be considered as context for
+ * the current window, leave next statement commented, else hide filler
+ * lines above cursor line, by adding them to extra */
+ /* extra += diff_check_fill(curwin, curwin->w_cursor.lnum); */
#endif
/*