blob: 404b2350fd2f4e051351506f3b76b81560c4aef7 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * move.c: Functions for moving the cursor and scrolling text.
11 *
12 * There are two ways to move the cursor:
13 * 1. Move the cursor directly, the text is scrolled to keep the cursor in the
14 * window.
15 * 2. Scroll the text, the cursor is moved into the text visible in the
16 * window.
17 * The 'scrolloff' option makes this a bit complicated.
18 */
19
20#include "vim.h"
21
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010022static void redraw_for_cursorline(win_T *wp);
23static int scrolljump_value(void);
24static int check_top_offset(void);
25static void curs_rows(win_T *wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000026
27typedef struct
28{
29 linenr_T lnum; /* line number */
30#ifdef FEAT_DIFF
31 int fill; /* filler lines */
32#endif
33 int height; /* height of added line */
34} lineoff_T;
35
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010036static void topline_back(lineoff_T *lp);
37static void botline_forw(lineoff_T *lp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000038
39/*
40 * Compute wp->w_botline for the current wp->w_topline. Can be called after
41 * wp->w_topline changed.
42 */
43 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +010044comp_botline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000045{
46 int n;
47 linenr_T lnum;
48 int done;
49#ifdef FEAT_FOLDING
50 linenr_T last;
51 int folded;
52#endif
53
54 /*
55 * If w_cline_row is valid, start there.
56 * Otherwise have to start at w_topline.
57 */
58 check_cursor_moved(wp);
59 if (wp->w_valid & VALID_CROW)
60 {
61 lnum = wp->w_cursor.lnum;
62 done = wp->w_cline_row;
63 }
64 else
65 {
66 lnum = wp->w_topline;
67 done = 0;
68 }
69
70 for ( ; lnum <= wp->w_buffer->b_ml.ml_line_count; ++lnum)
71 {
72#ifdef FEAT_FOLDING
73 last = lnum;
74 folded = FALSE;
75 if (hasFoldingWin(wp, lnum, NULL, &last, TRUE, NULL))
76 {
77 n = 1;
78 folded = TRUE;
79 }
80 else
81#endif
82#ifdef FEAT_DIFF
83 if (lnum == wp->w_topline)
84 n = plines_win_nofill(wp, lnum, TRUE) + wp->w_topfill;
85 else
86#endif
87 n = plines_win(wp, lnum, TRUE);
88 if (
89#ifdef FEAT_FOLDING
90 lnum <= wp->w_cursor.lnum && last >= wp->w_cursor.lnum
91#else
92 lnum == wp->w_cursor.lnum
93#endif
94 )
95 {
96 wp->w_cline_row = done;
97 wp->w_cline_height = n;
98#ifdef FEAT_FOLDING
99 wp->w_cline_folded = folded;
100#endif
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100101 redraw_for_cursorline(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102 wp->w_valid |= (VALID_CROW|VALID_CHEIGHT);
103 }
104 if (done + n > wp->w_height)
105 break;
106 done += n;
107#ifdef FEAT_FOLDING
108 lnum = last;
109#endif
110 }
111
112 /* wp->w_botline is the line that is just below the window */
113 wp->w_botline = lnum;
114 wp->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
115
116 set_empty_rows(wp, done);
117}
118
Bram Moolenaar90a99792018-09-12 21:52:18 +0200119#ifdef FEAT_SYN_HL
Bram Moolenaar8c63e0e2018-09-25 22:17:54 +0200120 void
121reset_cursorline(void)
122{
Bram Moolenaar4a5abbd2018-10-02 18:26:10 +0200123 curwin->w_last_cursorline = 0;
Bram Moolenaar8c63e0e2018-09-25 22:17:54 +0200124}
Bram Moolenaar90a99792018-09-12 21:52:18 +0200125#endif
126
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127/*
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100128 * Redraw when w_cline_row changes and 'relativenumber' or 'cursorline' is
129 * set.
130 */
131 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100132redraw_for_cursorline(win_T *wp)
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100133{
134 if ((wp->w_p_rnu
135#ifdef FEAT_SYN_HL
136 || wp->w_p_cul
137#endif
138 )
139 && (wp->w_valid & VALID_CROW) == 0
Bram Moolenaar6f7e5552019-01-11 11:55:16 +0100140#ifdef FEAT_INS_EXPAND
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100141 && !pum_visible()
Bram Moolenaar6f7e5552019-01-11 11:55:16 +0100142#endif
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100143 )
Bram Moolenaar90a99792018-09-12 21:52:18 +0200144 {
Bram Moolenaarbd9a53c2018-09-12 23:15:48 +0200145 if (wp->w_p_rnu)
146 // win_line() will redraw the number column only.
Bram Moolenaar90a99792018-09-12 21:52:18 +0200147 redraw_win_later(wp, VALID);
Bram Moolenaar1b7fefc2018-09-12 22:27:15 +0200148#ifdef FEAT_SYN_HL
Bram Moolenaarbd9a53c2018-09-12 23:15:48 +0200149 if (wp->w_p_cul)
150 {
Bram Moolenaar4a5abbd2018-10-02 18:26:10 +0200151 if (wp->w_redr_type <= VALID && wp->w_last_cursorline != 0)
Bram Moolenaarbd9a53c2018-09-12 23:15:48 +0200152 {
Bram Moolenaar4a5abbd2018-10-02 18:26:10 +0200153 // "w_last_cursorline" may be outdated, worst case we redraw
154 // too much. This is optimized for moving the cursor around in
155 // the current window.
Bram Moolenaarae12f4b2019-01-09 20:51:04 +0100156 redrawWinline(wp, wp->w_last_cursorline);
157 redrawWinline(wp, wp->w_cursor.lnum);
Bram Moolenaarbd9a53c2018-09-12 23:15:48 +0200158 }
159 else
160 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar4a5abbd2018-10-02 18:26:10 +0200161 wp->w_last_cursorline = wp->w_cursor.lnum;
Bram Moolenaarbd9a53c2018-09-12 23:15:48 +0200162 }
Bram Moolenaar1b7fefc2018-09-12 22:27:15 +0200163#endif
Bram Moolenaar90a99792018-09-12 21:52:18 +0200164 }
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100165}
166
167/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168 * Update curwin->w_topline and redraw if necessary.
169 * Used to update the screen before printing a message.
170 */
171 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100172update_topline_redraw(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173{
174 update_topline();
175 if (must_redraw)
176 update_screen(0);
177}
178
179/*
180 * Update curwin->w_topline to move the cursor onto the screen.
181 */
182 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100183update_topline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184{
185 long line_count;
186 int halfheight;
187 int n;
188 linenr_T old_topline;
189#ifdef FEAT_DIFF
190 int old_topfill;
191#endif
192#ifdef FEAT_FOLDING
193 linenr_T lnum;
194#endif
195 int check_topline = FALSE;
196 int check_botline = FALSE;
197#ifdef FEAT_MOUSE
198 int save_so = p_so;
199#endif
200
Bram Moolenaard5d37532017-03-27 23:02:07 +0200201 /* If there is no valid screen and when the window height is zero just use
202 * the cursor line. */
203 if (!screen_valid(TRUE) || curwin->w_height == 0)
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200204 {
205 curwin->w_topline = curwin->w_cursor.lnum;
206 curwin->w_botline = curwin->w_topline;
207 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200208 curwin->w_scbind_pos = 1;
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200209 return;
210 }
211
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 check_cursor_moved(curwin);
213 if (curwin->w_valid & VALID_TOPLINE)
214 return;
215
216#ifdef FEAT_MOUSE
217 /* When dragging with the mouse, don't scroll that quickly */
Bram Moolenaar9964e462007-05-05 17:54:07 +0000218 if (mouse_dragging > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 p_so = mouse_dragging - 1;
220#endif
221
222 old_topline = curwin->w_topline;
223#ifdef FEAT_DIFF
224 old_topfill = curwin->w_topfill;
225#endif
226
227 /*
228 * If the buffer is empty, always set topline to 1.
229 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100230 if (BUFEMPTY()) /* special case - file is empty */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 {
232 if (curwin->w_topline != 1)
233 redraw_later(NOT_VALID);
234 curwin->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 curwin->w_botline = 2;
236 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237 curwin->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 }
239
240 /*
241 * If the cursor is above or near the top of the window, scroll the window
242 * to show the line the cursor is in, with 'scrolloff' context.
243 */
244 else
245 {
246 if (curwin->w_topline > 1)
247 {
248 /* If the cursor is above topline, scrolling is always needed.
249 * If the cursor is far below topline and there is no folding,
250 * scrolling down is never needed. */
251 if (curwin->w_cursor.lnum < curwin->w_topline)
252 check_topline = TRUE;
253 else if (check_top_offset())
254 check_topline = TRUE;
255 }
256#ifdef FEAT_DIFF
257 /* Check if there are more filler lines than allowed. */
258 if (!check_topline && curwin->w_topfill > diff_check_fill(curwin,
259 curwin->w_topline))
260 check_topline = TRUE;
261#endif
262
263 if (check_topline)
264 {
265 halfheight = curwin->w_height / 2 - 1;
266 if (halfheight < 2)
267 halfheight = 2;
268
269#ifdef FEAT_FOLDING
270 if (hasAnyFolding(curwin))
271 {
272 /* Count the number of logical lines between the cursor and
273 * topline + p_so (approximation of how much will be
274 * scrolled). */
275 n = 0;
276 for (lnum = curwin->w_cursor.lnum;
277 lnum < curwin->w_topline + p_so; ++lnum)
278 {
279 ++n;
280 /* stop at end of file or when we know we are far off */
281 if (lnum >= curbuf->b_ml.ml_line_count || n >= halfheight)
282 break;
283 (void)hasFolding(lnum, NULL, &lnum);
284 }
285 }
286 else
287#endif
288 n = curwin->w_topline + p_so - curwin->w_cursor.lnum;
289
290 /* If we weren't very close to begin with, we scroll to put the
291 * cursor in the middle of the window. Otherwise put the cursor
292 * near the top of the window. */
293 if (n >= halfheight)
294 scroll_cursor_halfway(FALSE);
295 else
296 {
Bram Moolenaar1e015462005-09-25 22:16:38 +0000297 scroll_cursor_top(scrolljump_value(), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 check_botline = TRUE;
299 }
300 }
301
302 else
303 {
304#ifdef FEAT_FOLDING
305 /* Make sure topline is the first line of a fold. */
306 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
307#endif
308 check_botline = TRUE;
309 }
310 }
311
312 /*
313 * If the cursor is below the bottom of the window, scroll the window
314 * to put the cursor on the window.
315 * When w_botline is invalid, recompute it first, to avoid a redraw later.
316 * If w_botline was approximated, we might need a redraw later in a few
317 * cases, but we don't want to spend (a lot of) time recomputing w_botline
318 * for every small change.
319 */
320 if (check_botline)
321 {
322 if (!(curwin->w_valid & VALID_BOTLINE_AP))
323 validate_botline();
324
325 if (curwin->w_botline <= curbuf->b_ml.ml_line_count)
326 {
Bram Moolenaard4153d42008-11-15 15:06:17 +0000327 if (curwin->w_cursor.lnum < curwin->w_botline)
328 {
329 if (((long)curwin->w_cursor.lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330 >= (long)curwin->w_botline - p_so
331#ifdef FEAT_FOLDING
332 || hasAnyFolding(curwin)
333#endif
334 ))
Bram Moolenaard4153d42008-11-15 15:06:17 +0000335 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 lineoff_T loff;
337
Bram Moolenaard4153d42008-11-15 15:06:17 +0000338 /* Cursor is (a few lines) above botline, check if there are
339 * 'scrolloff' window lines below the cursor. If not, need to
340 * scroll. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 n = curwin->w_empty_rows;
342 loff.lnum = curwin->w_cursor.lnum;
343#ifdef FEAT_FOLDING
344 /* In a fold go to its last line. */
345 (void)hasFolding(loff.lnum, NULL, &loff.lnum);
346#endif
347#ifdef FEAT_DIFF
348 loff.fill = 0;
349 n += curwin->w_filler_rows;
350#endif
351 loff.height = 0;
352 while (loff.lnum < curwin->w_botline
353#ifdef FEAT_DIFF
354 && (loff.lnum + 1 < curwin->w_botline || loff.fill == 0)
355#endif
356 )
357 {
358 n += loff.height;
359 if (n >= p_so)
360 break;
361 botline_forw(&loff);
362 }
363 if (n >= p_so)
364 /* sufficient context, no need to scroll */
365 check_botline = FALSE;
Bram Moolenaard4153d42008-11-15 15:06:17 +0000366 }
367 else
368 /* sufficient context, no need to scroll */
369 check_botline = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 }
371 if (check_botline)
372 {
373#ifdef FEAT_FOLDING
374 if (hasAnyFolding(curwin))
375 {
376 /* Count the number of logical lines between the cursor and
377 * botline - p_so (approximation of how much will be
378 * scrolled). */
379 line_count = 0;
380 for (lnum = curwin->w_cursor.lnum;
381 lnum >= curwin->w_botline - p_so; --lnum)
382 {
383 ++line_count;
384 /* stop at end of file or when we know we are far off */
385 if (lnum <= 0 || line_count > curwin->w_height + 1)
386 break;
387 (void)hasFolding(lnum, &lnum, NULL);
388 }
389 }
390 else
391#endif
392 line_count = curwin->w_cursor.lnum - curwin->w_botline
393 + 1 + p_so;
394 if (line_count <= curwin->w_height + 1)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000395 scroll_cursor_bot(scrolljump_value(), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 else
397 scroll_cursor_halfway(FALSE);
398 }
399 }
400 }
401 curwin->w_valid |= VALID_TOPLINE;
402
403 /*
404 * Need to redraw when topline changed.
405 */
406 if (curwin->w_topline != old_topline
407#ifdef FEAT_DIFF
408 || curwin->w_topfill != old_topfill
409#endif
410 )
411 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +0100412 dollar_vcol = -1;
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000413 if (curwin->w_skipcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414 {
415 curwin->w_skipcol = 0;
416 redraw_later(NOT_VALID);
417 }
418 else
419 redraw_later(VALID);
420 /* May need to set w_skipcol when cursor in w_topline. */
421 if (curwin->w_cursor.lnum == curwin->w_topline)
422 validate_cursor();
423 }
424
425#ifdef FEAT_MOUSE
426 p_so = save_so;
427#endif
428}
429
430/*
Bram Moolenaar1e015462005-09-25 22:16:38 +0000431 * Return the scrolljump value to use for the current window.
432 * When 'scrolljump' is positive use it as-is.
433 * When 'scrolljump' is negative use it as a percentage of the window height.
434 */
435 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100436scrolljump_value(void)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000437{
438 if (p_sj >= 0)
439 return (int)p_sj;
440 return (curwin->w_height * -p_sj) / 100;
441}
442
443/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 * Return TRUE when there are not 'scrolloff' lines above the cursor for the
445 * current window.
446 */
447 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100448check_top_offset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449{
450 lineoff_T loff;
451 int n;
452
453 if (curwin->w_cursor.lnum < curwin->w_topline + p_so
454#ifdef FEAT_FOLDING
455 || hasAnyFolding(curwin)
456#endif
457 )
458 {
459 loff.lnum = curwin->w_cursor.lnum;
460#ifdef FEAT_DIFF
461 loff.fill = 0;
462 n = curwin->w_topfill; /* always have this context */
463#else
464 n = 0;
465#endif
466 /* Count the visible screen lines above the cursor line. */
467 while (n < p_so)
468 {
469 topline_back(&loff);
470 /* Stop when included a line above the window. */
471 if (loff.lnum < curwin->w_topline
472#ifdef FEAT_DIFF
473 || (loff.lnum == curwin->w_topline && loff.fill > 0)
474#endif
475 )
476 break;
477 n += loff.height;
478 }
479 if (n < p_so)
480 return TRUE;
481 }
482 return FALSE;
483}
484
485 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100486update_curswant(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487{
488 if (curwin->w_set_curswant)
489 {
490 validate_virtcol();
491 curwin->w_curswant = curwin->w_virtcol;
492 curwin->w_set_curswant = FALSE;
493 }
494}
495
496/*
497 * Check if the cursor has moved. Set the w_valid flag accordingly.
498 */
499 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100500check_cursor_moved(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501{
502 if (wp->w_cursor.lnum != wp->w_valid_cursor.lnum)
503 {
504 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
505 |VALID_CHEIGHT|VALID_CROW|VALID_TOPLINE);
506 wp->w_valid_cursor = wp->w_cursor;
507 wp->w_valid_leftcol = wp->w_leftcol;
508 }
509 else if (wp->w_cursor.col != wp->w_valid_cursor.col
510 || wp->w_leftcol != wp->w_valid_leftcol
Bram Moolenaar29ddebe2019-01-26 17:28:26 +0100511 || wp->w_cursor.coladd != wp->w_valid_cursor.coladd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 {
513 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL);
514 wp->w_valid_cursor.col = wp->w_cursor.col;
515 wp->w_valid_leftcol = wp->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516 wp->w_valid_cursor.coladd = wp->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 }
518}
519
520/*
521 * Call this function when some window settings have changed, which require
522 * the cursor position, botline and topline to be recomputed and the window to
523 * be redrawn. E.g, when changing the 'wrap' option or folding.
524 */
525 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100526changed_window_setting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527{
528 changed_window_setting_win(curwin);
529}
530
531 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100532changed_window_setting_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533{
534 wp->w_lines_valid = 0;
535 changed_line_abv_curs_win(wp);
536 wp->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP|VALID_TOPLINE);
537 redraw_win_later(wp, NOT_VALID);
538}
539
540/*
541 * Set wp->w_topline to a certain number.
542 */
543 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100544set_topline(win_T *wp, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545{
546#ifdef FEAT_FOLDING
547 /* go to first of folded lines */
548 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
549#endif
550 /* Approximate the value of w_botline */
551 wp->w_botline += lnum - wp->w_topline;
552 wp->w_topline = lnum;
Bram Moolenaard4153d42008-11-15 15:06:17 +0000553 wp->w_topline_was_set = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554#ifdef FEAT_DIFF
555 wp->w_topfill = 0;
556#endif
557 wp->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_TOPLINE);
558 /* Don't set VALID_TOPLINE here, 'scrolloff' needs to be checked. */
559 redraw_later(VALID);
560}
561
562/*
563 * Call this function when the length of the cursor line (in screen
564 * characters) has changed, and the change is before the cursor.
565 * Need to take care of w_botline separately!
566 */
567 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100568changed_cline_bef_curs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569{
570 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
571 |VALID_CHEIGHT|VALID_TOPLINE);
572}
573
574 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100575changed_cline_bef_curs_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576{
577 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
578 |VALID_CHEIGHT|VALID_TOPLINE);
579}
580
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581/*
582 * Call this function when the length of a line (in screen characters) above
583 * the cursor have changed.
584 * Need to take care of w_botline separately!
585 */
586 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100587changed_line_abv_curs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588{
589 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL|VALID_CROW
590 |VALID_CHEIGHT|VALID_TOPLINE);
591}
592
593 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100594changed_line_abv_curs_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595{
596 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL|VALID_CROW
597 |VALID_CHEIGHT|VALID_TOPLINE);
598}
599
600/*
601 * Make sure the value of curwin->w_botline is valid.
602 */
603 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100604validate_botline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605{
606 if (!(curwin->w_valid & VALID_BOTLINE))
607 comp_botline(curwin);
608}
609
610/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 * Mark curwin->w_botline as invalid (because of some change in the buffer).
612 */
613 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100614invalidate_botline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615{
616 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
617}
618
619 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100620invalidate_botline_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621{
622 wp->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
623}
624
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100626approximate_botline_win(
627 win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628{
629 wp->w_valid &= ~VALID_BOTLINE;
630}
631
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632/*
633 * Return TRUE if curwin->w_wrow and curwin->w_wcol are valid.
634 */
635 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100636cursor_valid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637{
638 check_cursor_moved(curwin);
639 return ((curwin->w_valid & (VALID_WROW|VALID_WCOL)) ==
640 (VALID_WROW|VALID_WCOL));
641}
642
643/*
644 * Validate cursor position. Makes sure w_wrow and w_wcol are valid.
645 * w_topline must be valid, you may need to call update_topline() first!
646 */
647 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100648validate_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649{
650 check_cursor_moved(curwin);
651 if ((curwin->w_valid & (VALID_WCOL|VALID_WROW)) != (VALID_WCOL|VALID_WROW))
652 curs_columns(TRUE);
653}
654
655#if defined(FEAT_GUI) || defined(PROTO)
656/*
657 * validate w_cline_row.
658 */
659 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100660validate_cline_row(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661{
662 /*
663 * First make sure that w_topline is valid (after moving the cursor).
664 */
665 update_topline();
666 check_cursor_moved(curwin);
667 if (!(curwin->w_valid & VALID_CROW))
Bram Moolenaar3f9be972014-12-13 21:09:57 +0100668 curs_rows(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669}
670#endif
671
672/*
673 * Compute wp->w_cline_row and wp->w_cline_height, based on the current value
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200674 * of wp->w_topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 */
676 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100677curs_rows(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678{
679 linenr_T lnum;
680 int i;
681 int all_invalid;
682 int valid;
683#ifdef FEAT_FOLDING
684 long fold_count;
685#endif
686
687 /* Check if wp->w_lines[].wl_size is invalid */
688 all_invalid = (!redrawing()
689 || wp->w_lines_valid == 0
690 || wp->w_lines[0].wl_lnum > wp->w_topline);
691 i = 0;
692 wp->w_cline_row = 0;
693 for (lnum = wp->w_topline; lnum < wp->w_cursor.lnum; ++i)
694 {
695 valid = FALSE;
696 if (!all_invalid && i < wp->w_lines_valid)
697 {
698 if (wp->w_lines[i].wl_lnum < lnum || !wp->w_lines[i].wl_valid)
699 continue; /* skip changed or deleted lines */
700 if (wp->w_lines[i].wl_lnum == lnum)
701 {
702#ifdef FEAT_FOLDING
703 /* Check for newly inserted lines below this row, in which
704 * case we need to check for folded lines. */
705 if (!wp->w_buffer->b_mod_set
706 || wp->w_lines[i].wl_lastlnum < wp->w_cursor.lnum
707 || wp->w_buffer->b_mod_top
708 > wp->w_lines[i].wl_lastlnum + 1)
709#endif
710 valid = TRUE;
711 }
712 else if (wp->w_lines[i].wl_lnum > lnum)
713 --i; /* hold at inserted lines */
714 }
715 if (valid
716#ifdef FEAT_DIFF
717 && (lnum != wp->w_topline || !wp->w_p_diff)
718#endif
719 )
720 {
721#ifdef FEAT_FOLDING
722 lnum = wp->w_lines[i].wl_lastlnum + 1;
723 /* Cursor inside folded lines, don't count this row */
724 if (lnum > wp->w_cursor.lnum)
725 break;
726#else
727 ++lnum;
728#endif
729 wp->w_cline_row += wp->w_lines[i].wl_size;
730 }
731 else
732 {
733#ifdef FEAT_FOLDING
734 fold_count = foldedCount(wp, lnum, NULL);
735 if (fold_count)
736 {
737 lnum += fold_count;
738 if (lnum > wp->w_cursor.lnum)
739 break;
740 ++wp->w_cline_row;
741 }
742 else
743#endif
744#ifdef FEAT_DIFF
745 if (lnum == wp->w_topline)
746 wp->w_cline_row += plines_win_nofill(wp, lnum++, TRUE)
747 + wp->w_topfill;
748 else
749#endif
750 wp->w_cline_row += plines_win(wp, lnum++, TRUE);
751 }
752 }
753
754 check_cursor_moved(wp);
755 if (!(wp->w_valid & VALID_CHEIGHT))
756 {
757 if (all_invalid
758 || i == wp->w_lines_valid
759 || (i < wp->w_lines_valid
760 && (!wp->w_lines[i].wl_valid
761 || wp->w_lines[i].wl_lnum != wp->w_cursor.lnum)))
762 {
763#ifdef FEAT_DIFF
764 if (wp->w_cursor.lnum == wp->w_topline)
765 wp->w_cline_height = plines_win_nofill(wp, wp->w_cursor.lnum,
766 TRUE) + wp->w_topfill;
767 else
768#endif
769 wp->w_cline_height = plines_win(wp, wp->w_cursor.lnum, TRUE);
770#ifdef FEAT_FOLDING
771 wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
772 NULL, NULL, TRUE, NULL);
773#endif
774 }
775 else if (i > wp->w_lines_valid)
776 {
777 /* a line that is too long to fit on the last screen line */
778 wp->w_cline_height = 0;
779#ifdef FEAT_FOLDING
780 wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
781 NULL, NULL, TRUE, NULL);
782#endif
783 }
784 else
785 {
786 wp->w_cline_height = wp->w_lines[i].wl_size;
787#ifdef FEAT_FOLDING
788 wp->w_cline_folded = wp->w_lines[i].wl_folded;
789#endif
790 }
791 }
792
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100793 redraw_for_cursorline(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 wp->w_valid |= VALID_CROW|VALID_CHEIGHT;
795
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796}
797
798/*
799 * Validate curwin->w_virtcol only.
800 */
801 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100802validate_virtcol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803{
804 validate_virtcol_win(curwin);
805}
806
807/*
808 * Validate wp->w_virtcol only.
809 */
810 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100811validate_virtcol_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812{
813 check_cursor_moved(wp);
814 if (!(wp->w_valid & VALID_VIRTCOL))
815 {
816 getvvcol(wp, &wp->w_cursor, NULL, &(wp->w_virtcol), NULL);
817 wp->w_valid |= VALID_VIRTCOL;
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000818#ifdef FEAT_SYN_HL
Bram Moolenaar019ff682006-03-13 22:10:45 +0000819 if (wp->w_p_cuc
820# ifdef FEAT_INS_EXPAND
821 && !pum_visible()
822# endif
823 )
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000824 redraw_win_later(wp, SOME_VALID);
825#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 }
827}
828
829/*
830 * Validate curwin->w_cline_height only.
831 */
832 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100833validate_cheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834{
835 check_cursor_moved(curwin);
836 if (!(curwin->w_valid & VALID_CHEIGHT))
837 {
838#ifdef FEAT_DIFF
839 if (curwin->w_cursor.lnum == curwin->w_topline)
840 curwin->w_cline_height = plines_nofill(curwin->w_cursor.lnum)
841 + curwin->w_topfill;
842 else
843#endif
844 curwin->w_cline_height = plines(curwin->w_cursor.lnum);
845#ifdef FEAT_FOLDING
846 curwin->w_cline_folded = hasFolding(curwin->w_cursor.lnum, NULL, NULL);
847#endif
848 curwin->w_valid |= VALID_CHEIGHT;
849 }
850}
851
852/*
Bram Moolenaarc236c162008-07-13 17:41:49 +0000853 * Validate w_wcol and w_virtcol only.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 */
855 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100856validate_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857{
858 colnr_T off;
859 colnr_T col;
Bram Moolenaar6427c602010-02-03 17:43:07 +0100860 int width;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861
862 validate_virtcol();
863 if (!(curwin->w_valid & VALID_WCOL))
864 {
865 col = curwin->w_virtcol;
866 off = curwin_col_off();
867 col += off;
Bram Moolenaar02631462017-09-22 15:20:32 +0200868 width = curwin->w_width - off + curwin_col_off2();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869
870 /* long line wrapping, adjust curwin->w_wrow */
Bram Moolenaarc236c162008-07-13 17:41:49 +0000871 if (curwin->w_p_wrap
Bram Moolenaar02631462017-09-22 15:20:32 +0200872 && col >= (colnr_T)curwin->w_width
Bram Moolenaar6427c602010-02-03 17:43:07 +0100873 && width > 0)
874 /* use same formula as what is used in curs_columns() */
Bram Moolenaar02631462017-09-22 15:20:32 +0200875 col -= ((col - curwin->w_width) / width + 1) * width;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000876 if (col > (int)curwin->w_leftcol)
877 col -= curwin->w_leftcol;
878 else
879 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 curwin->w_wcol = col;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000881
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 curwin->w_valid |= VALID_WCOL;
883 }
884}
885
886/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200887 * Compute offset of a window, occupied by absolute or relative line number,
888 * fold column and sign column (these don't move when scrolling horizontally).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 */
890 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100891win_col_off(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892{
Bram Moolenaar64486672010-05-16 15:46:46 +0200893 return (((wp->w_p_nu || wp->w_p_rnu) ? number_width(wp) + 1 : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894#ifdef FEAT_CMDWIN
895 + (cmdwin_type == 0 || wp != curwin ? 0 : 1)
896#endif
897#ifdef FEAT_FOLDING
898 + wp->w_p_fdc
899#endif
900#ifdef FEAT_SIGNS
Bram Moolenaar95ec9d62016-08-12 18:29:59 +0200901 + (signcolumn_on(wp) ? 2 : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902#endif
903 );
904}
905
906 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100907curwin_col_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908{
909 return win_col_off(curwin);
910}
911
912/*
913 * Return the difference in column offset for the second screen line of a
Bram Moolenaar64486672010-05-16 15:46:46 +0200914 * wrapped line. It's 8 if 'number' or 'relativenumber' is on and 'n' is in
915 * 'cpoptions'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 */
917 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100918win_col_off2(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919{
Bram Moolenaar64486672010-05-16 15:46:46 +0200920 if ((wp->w_p_nu || wp->w_p_rnu) && vim_strchr(p_cpo, CPO_NUMCOL) != NULL)
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000921 return number_width(wp) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 return 0;
923}
924
925 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100926curwin_col_off2(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927{
928 return win_col_off2(curwin);
929}
930
931/*
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100932 * Compute curwin->w_wcol and curwin->w_virtcol.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 * Also updates curwin->w_wrow and curwin->w_cline_row.
934 * Also updates curwin->w_leftcol.
935 */
936 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100937curs_columns(
938 int may_scroll) /* when TRUE, may scroll horizontally */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939{
940 int diff;
941 int extra; /* offset for first screen line */
942 int off_left, off_right;
943 int n;
944 int p_lines;
945 int width = 0;
946 int textwidth;
947 int new_leftcol;
948 colnr_T startcol;
949 colnr_T endcol;
950 colnr_T prev_skipcol;
951
952 /*
953 * First make sure that w_topline is valid (after moving the cursor).
954 */
955 update_topline();
956
957 /*
958 * Next make sure that w_cline_row is valid.
959 */
960 if (!(curwin->w_valid & VALID_CROW))
Bram Moolenaar3f9be972014-12-13 21:09:57 +0100961 curs_rows(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962
963 /*
964 * Compute the number of virtual columns.
965 */
966#ifdef FEAT_FOLDING
967 if (curwin->w_cline_folded)
968 /* In a folded line the cursor is always in the first column */
969 startcol = curwin->w_virtcol = endcol = curwin->w_leftcol;
970 else
971#endif
972 getvvcol(curwin, &curwin->w_cursor,
973 &startcol, &(curwin->w_virtcol), &endcol);
974
975 /* remove '$' from change command when cursor moves onto it */
976 if (startcol > dollar_vcol)
Bram Moolenaar76b9b362012-02-04 23:35:00 +0100977 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978
979 extra = curwin_col_off();
980 curwin->w_wcol = curwin->w_virtcol + extra;
981 endcol += extra;
982
983 /*
984 * Now compute w_wrow, counting screen lines from w_cline_row.
985 */
986 curwin->w_wrow = curwin->w_cline_row;
987
Bram Moolenaar02631462017-09-22 15:20:32 +0200988 textwidth = curwin->w_width - extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 if (textwidth <= 0)
990 {
991 /* No room for text, put cursor in last char of window. */
Bram Moolenaar02631462017-09-22 15:20:32 +0200992 curwin->w_wcol = curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 curwin->w_wrow = curwin->w_height - 1;
994 }
Bram Moolenaar4033c552017-09-16 20:54:51 +0200995 else if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 {
997 width = textwidth + curwin_col_off2();
998
999 /* long line wrapping, adjust curwin->w_wrow */
Bram Moolenaar02631462017-09-22 15:20:32 +02001000 if (curwin->w_wcol >= curwin->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 {
Bram Moolenaar6427c602010-02-03 17:43:07 +01001002 /* this same formula is used in validate_cursor_col() */
Bram Moolenaar02631462017-09-22 15:20:32 +02001003 n = (curwin->w_wcol - curwin->w_width) / width + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 curwin->w_wcol -= n * width;
1005 curwin->w_wrow += n;
1006
1007#ifdef FEAT_LINEBREAK
1008 /* When cursor wraps to first char of next line in Insert
1009 * mode, the 'showbreak' string isn't shown, backup to first
1010 * column */
1011 if (*p_sbr && *ml_get_cursor() == NUL
1012 && curwin->w_wcol == (int)vim_strsize(p_sbr))
1013 curwin->w_wcol = 0;
1014#endif
1015 }
1016 }
1017
1018 /* No line wrapping: compute curwin->w_leftcol if scrolling is on and line
1019 * is not folded.
1020 * If scrolling is off, curwin->w_leftcol is assumed to be 0 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001021 else if (may_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022#ifdef FEAT_FOLDING
1023 && !curwin->w_cline_folded
1024#endif
1025 )
1026 {
1027 /*
1028 * If Cursor is left of the screen, scroll rightwards.
1029 * If Cursor is right of the screen, scroll leftwards
1030 * If we get closer to the edge than 'sidescrolloff', scroll a little
1031 * extra
1032 */
1033 off_left = (int)startcol - (int)curwin->w_leftcol - p_siso;
Bram Moolenaar02631462017-09-22 15:20:32 +02001034 off_right = (int)endcol - (int)(curwin->w_leftcol + curwin->w_width
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 - p_siso) + 1;
1036 if (off_left < 0 || off_right > 0)
1037 {
1038 if (off_left < 0)
1039 diff = -off_left;
1040 else
1041 diff = off_right;
1042
1043 /* When far off or not enough room on either side, put cursor in
1044 * middle of window. */
1045 if (p_ss == 0 || diff >= textwidth / 2 || off_right >= off_left)
1046 new_leftcol = curwin->w_wcol - extra - textwidth / 2;
1047 else
1048 {
1049 if (diff < p_ss)
1050 diff = p_ss;
1051 if (off_left < 0)
1052 new_leftcol = curwin->w_leftcol - diff;
1053 else
1054 new_leftcol = curwin->w_leftcol + diff;
1055 }
1056 if (new_leftcol < 0)
1057 new_leftcol = 0;
1058 if (new_leftcol != (int)curwin->w_leftcol)
1059 {
1060 curwin->w_leftcol = new_leftcol;
1061 /* screen has to be redrawn with new curwin->w_leftcol */
1062 redraw_later(NOT_VALID);
1063 }
1064 }
1065 curwin->w_wcol -= curwin->w_leftcol;
1066 }
1067 else if (curwin->w_wcol > (int)curwin->w_leftcol)
1068 curwin->w_wcol -= curwin->w_leftcol;
1069 else
1070 curwin->w_wcol = 0;
1071
1072#ifdef FEAT_DIFF
1073 /* Skip over filler lines. At the top use w_topfill, there
1074 * may be some filler lines above the window. */
1075 if (curwin->w_cursor.lnum == curwin->w_topline)
1076 curwin->w_wrow += curwin->w_topfill;
1077 else
1078 curwin->w_wrow += diff_check_fill(curwin, curwin->w_cursor.lnum);
1079#endif
1080
1081 prev_skipcol = curwin->w_skipcol;
1082
1083 p_lines = 0;
1084 if ((curwin->w_wrow >= curwin->w_height
1085 || ((prev_skipcol > 0
1086 || curwin->w_wrow + p_so >= curwin->w_height)
1087 && (p_lines =
1088#ifdef FEAT_DIFF
1089 plines_win_nofill
1090#else
1091 plines_win
1092#endif
1093 (curwin, curwin->w_cursor.lnum, FALSE))
1094 - 1 >= curwin->w_height))
1095 && curwin->w_height != 0
1096 && curwin->w_cursor.lnum == curwin->w_topline
1097 && width > 0
Bram Moolenaar4033c552017-09-16 20:54:51 +02001098 && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 {
1100 /* Cursor past end of screen. Happens with a single line that does
1101 * not fit on screen. Find a skipcol to show the text around the
1102 * cursor. Avoid scrolling all the time. compute value of "extra":
1103 * 1: Less than "p_so" lines above
1104 * 2: Less than "p_so" lines below
1105 * 3: both of them */
1106 extra = 0;
1107 if (curwin->w_skipcol + p_so * width > curwin->w_virtcol)
1108 extra = 1;
1109 /* Compute last display line of the buffer line that we want at the
1110 * bottom of the window. */
1111 if (p_lines == 0)
1112 p_lines = plines_win(curwin, curwin->w_cursor.lnum, FALSE);
1113 --p_lines;
1114 if (p_lines > curwin->w_wrow + p_so)
1115 n = curwin->w_wrow + p_so;
1116 else
1117 n = p_lines;
1118 if ((colnr_T)n >= curwin->w_height + curwin->w_skipcol / width)
1119 extra += 2;
1120
1121 if (extra == 3 || p_lines < p_so * 2)
1122 {
1123 /* not enough room for 'scrolloff', put cursor in the middle */
1124 n = curwin->w_virtcol / width;
1125 if (n > curwin->w_height / 2)
1126 n -= curwin->w_height / 2;
1127 else
1128 n = 0;
1129 /* don't skip more than necessary */
1130 if (n > p_lines - curwin->w_height + 1)
1131 n = p_lines - curwin->w_height + 1;
1132 curwin->w_skipcol = n * width;
1133 }
1134 else if (extra == 1)
1135 {
1136 /* less then 'scrolloff' lines above, decrease skipcol */
1137 extra = (curwin->w_skipcol + p_so * width - curwin->w_virtcol
1138 + width - 1) / width;
1139 if (extra > 0)
1140 {
1141 if ((colnr_T)(extra * width) > curwin->w_skipcol)
1142 extra = curwin->w_skipcol / width;
1143 curwin->w_skipcol -= extra * width;
1144 }
1145 }
1146 else if (extra == 2)
1147 {
1148 /* less then 'scrolloff' lines below, increase skipcol */
1149 endcol = (n - curwin->w_height + 1) * width;
1150 while (endcol > curwin->w_virtcol)
1151 endcol -= width;
1152 if (endcol > curwin->w_skipcol)
1153 curwin->w_skipcol = endcol;
1154 }
1155
1156 curwin->w_wrow -= curwin->w_skipcol / width;
1157 if (curwin->w_wrow >= curwin->w_height)
1158 {
1159 /* small window, make sure cursor is in it */
1160 extra = curwin->w_wrow - curwin->w_height + 1;
1161 curwin->w_skipcol += extra * width;
1162 curwin->w_wrow -= extra;
1163 }
1164
1165 extra = ((int)prev_skipcol - (int)curwin->w_skipcol) / width;
1166 if (extra > 0)
1167 win_ins_lines(curwin, 0, extra, FALSE, FALSE);
1168 else if (extra < 0)
Bram Moolenaarcfce7172017-08-17 20:31:48 +02001169 win_del_lines(curwin, 0, -extra, FALSE, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 }
1171 else
1172 curwin->w_skipcol = 0;
1173 if (prev_skipcol != curwin->w_skipcol)
1174 redraw_later(NOT_VALID);
1175
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001176#ifdef FEAT_SYN_HL
Bram Moolenaarb6798752014-03-27 12:11:48 +01001177 /* Redraw when w_virtcol changes and 'cursorcolumn' is set */
1178 if (curwin->w_p_cuc && (curwin->w_valid & VALID_VIRTCOL) == 0
Bram Moolenaar64486672010-05-16 15:46:46 +02001179# ifdef FEAT_INS_EXPAND
Bram Moolenaarb6798752014-03-27 12:11:48 +01001180 && !pum_visible()
Bram Moolenaar64486672010-05-16 15:46:46 +02001181# endif
Bram Moolenaarb6798752014-03-27 12:11:48 +01001182 )
1183 redraw_later(SOME_VALID);
1184#endif
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001185
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 curwin->w_valid |= VALID_WCOL|VALID_WROW|VALID_VIRTCOL;
1187}
1188
1189/*
1190 * Scroll the current window down by "line_count" logical lines. "CTRL-Y"
1191 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001193scrolldown(
1194 long line_count,
1195 int byfold UNUSED) /* TRUE: count a closed fold as one line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196{
1197 long done = 0; /* total # of physical lines done */
1198 int wrow;
1199 int moved = FALSE;
1200
1201#ifdef FEAT_FOLDING
1202 linenr_T first;
1203
1204 /* Make sure w_topline is at the first of a sequence of folded lines. */
1205 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1206#endif
1207 validate_cursor(); /* w_wrow needs to be valid */
1208 while (line_count-- > 0)
1209 {
1210#ifdef FEAT_DIFF
Bram Moolenaarfa316dd2009-11-03 15:23:14 +00001211 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)
1212 && curwin->w_topfill < curwin->w_height - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 {
1214 ++curwin->w_topfill;
1215 ++done;
1216 }
1217 else
1218#endif
1219 {
1220 if (curwin->w_topline == 1)
1221 break;
1222 --curwin->w_topline;
1223#ifdef FEAT_DIFF
1224 curwin->w_topfill = 0;
1225#endif
1226#ifdef FEAT_FOLDING
1227 /* A sequence of folded lines only counts for one logical line */
1228 if (hasFolding(curwin->w_topline, &first, NULL))
1229 {
1230 ++done;
1231 if (!byfold)
1232 line_count -= curwin->w_topline - first - 1;
1233 curwin->w_botline -= curwin->w_topline - first;
1234 curwin->w_topline = first;
1235 }
1236 else
1237#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02001238 done += PLINES_NOFILL(curwin->w_topline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 }
1240 --curwin->w_botline; /* approximate w_botline */
1241 invalidate_botline();
1242 }
1243 curwin->w_wrow += done; /* keep w_wrow updated */
1244 curwin->w_cline_row += done; /* keep w_cline_row updated */
1245
1246#ifdef FEAT_DIFF
1247 if (curwin->w_cursor.lnum == curwin->w_topline)
1248 curwin->w_cline_row = 0;
1249 check_topfill(curwin, TRUE);
1250#endif
1251
1252 /*
1253 * Compute the row number of the last row of the cursor line
1254 * and move the cursor onto the displayed part of the window.
1255 */
1256 wrow = curwin->w_wrow;
Bram Moolenaar4033c552017-09-16 20:54:51 +02001257 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 {
1259 validate_virtcol();
1260 validate_cheight();
1261 wrow += curwin->w_cline_height - 1 -
Bram Moolenaar02631462017-09-22 15:20:32 +02001262 curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 }
1264 while (wrow >= curwin->w_height && curwin->w_cursor.lnum > 1)
1265 {
1266#ifdef FEAT_FOLDING
1267 if (hasFolding(curwin->w_cursor.lnum, &first, NULL))
1268 {
1269 --wrow;
1270 if (first == 1)
1271 curwin->w_cursor.lnum = 1;
1272 else
1273 curwin->w_cursor.lnum = first - 1;
1274 }
1275 else
1276#endif
1277 wrow -= plines(curwin->w_cursor.lnum--);
1278 curwin->w_valid &=
1279 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1280 moved = TRUE;
1281 }
1282 if (moved)
1283 {
1284#ifdef FEAT_FOLDING
1285 /* Move cursor to first line of closed fold. */
1286 foldAdjustCursor();
1287#endif
1288 coladvance(curwin->w_curswant);
1289 }
1290}
1291
1292/*
1293 * Scroll the current window up by "line_count" logical lines. "CTRL-E"
1294 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001296scrollup(
1297 long line_count,
1298 int byfold UNUSED) /* TRUE: count a closed fold as one line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299{
1300#if defined(FEAT_FOLDING) || defined(FEAT_DIFF)
1301 linenr_T lnum;
1302
1303 if (
1304# ifdef FEAT_FOLDING
1305 (byfold && hasAnyFolding(curwin))
1306# ifdef FEAT_DIFF
1307 ||
1308# endif
1309# endif
1310# ifdef FEAT_DIFF
1311 curwin->w_p_diff
1312# endif
1313 )
1314 {
1315 /* count each sequence of folded lines as one logical line */
1316 lnum = curwin->w_topline;
1317 while (line_count--)
1318 {
1319# ifdef FEAT_DIFF
1320 if (curwin->w_topfill > 0)
1321 --curwin->w_topfill;
1322 else
1323# endif
1324 {
1325# ifdef FEAT_FOLDING
1326 if (byfold)
1327 (void)hasFolding(lnum, NULL, &lnum);
1328# endif
1329 if (lnum >= curbuf->b_ml.ml_line_count)
1330 break;
1331 ++lnum;
1332# ifdef FEAT_DIFF
1333 curwin->w_topfill = diff_check_fill(curwin, lnum);
1334# endif
1335 }
1336 }
1337 /* approximate w_botline */
1338 curwin->w_botline += lnum - curwin->w_topline;
1339 curwin->w_topline = lnum;
1340 }
1341 else
1342#endif
1343 {
1344 curwin->w_topline += line_count;
1345 curwin->w_botline += line_count; /* approximate w_botline */
1346 }
1347
1348 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
1349 curwin->w_topline = curbuf->b_ml.ml_line_count;
1350 if (curwin->w_botline > curbuf->b_ml.ml_line_count + 1)
1351 curwin->w_botline = curbuf->b_ml.ml_line_count + 1;
1352
1353#ifdef FEAT_DIFF
1354 check_topfill(curwin, FALSE);
1355#endif
1356
1357#ifdef FEAT_FOLDING
1358 if (hasAnyFolding(curwin))
1359 /* Make sure w_topline is at the first of a sequence of folded lines. */
1360 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1361#endif
1362
1363 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1364 if (curwin->w_cursor.lnum < curwin->w_topline)
1365 {
1366 curwin->w_cursor.lnum = curwin->w_topline;
1367 curwin->w_valid &=
1368 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1369 coladvance(curwin->w_curswant);
1370 }
1371}
1372
1373#ifdef FEAT_DIFF
1374/*
1375 * Don't end up with too many filler lines in the window.
1376 */
1377 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001378check_topfill(
1379 win_T *wp,
1380 int down) /* when TRUE scroll down when not enough space */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381{
1382 int n;
1383
1384 if (wp->w_topfill > 0)
1385 {
1386 n = plines_win_nofill(wp, wp->w_topline, TRUE);
1387 if (wp->w_topfill + n > wp->w_height)
1388 {
1389 if (down && wp->w_topline > 1)
1390 {
1391 --wp->w_topline;
1392 wp->w_topfill = 0;
1393 }
1394 else
1395 {
1396 wp->w_topfill = wp->w_height - n;
1397 if (wp->w_topfill < 0)
1398 wp->w_topfill = 0;
1399 }
1400 }
1401 }
1402}
1403
1404/*
1405 * Use as many filler lines as possible for w_topline. Make sure w_topline
1406 * is still visible.
1407 */
1408 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001409max_topfill(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410{
1411 int n;
1412
1413 n = plines_nofill(curwin->w_topline);
1414 if (n >= curwin->w_height)
1415 curwin->w_topfill = 0;
1416 else
1417 {
1418 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
1419 if (curwin->w_topfill + n > curwin->w_height)
1420 curwin->w_topfill = curwin->w_height - n;
1421 }
1422}
1423#endif
1424
1425#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1426/*
1427 * Scroll the screen one line down, but don't do it if it would move the
1428 * cursor off the screen.
1429 */
1430 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001431scrolldown_clamp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432{
1433 int end_row;
1434#ifdef FEAT_DIFF
1435 int can_fill = (curwin->w_topfill
1436 < diff_check_fill(curwin, curwin->w_topline));
1437#endif
1438
1439 if (curwin->w_topline <= 1
1440#ifdef FEAT_DIFF
1441 && !can_fill
1442#endif
1443 )
1444 return;
1445
1446 validate_cursor(); /* w_wrow needs to be valid */
1447
1448 /*
1449 * Compute the row number of the last row of the cursor line
1450 * and make sure it doesn't go off the screen. Make sure the cursor
1451 * doesn't go past 'scrolloff' lines from the screen end.
1452 */
1453 end_row = curwin->w_wrow;
1454#ifdef FEAT_DIFF
1455 if (can_fill)
1456 ++end_row;
1457 else
1458 end_row += plines_nofill(curwin->w_topline - 1);
1459#else
1460 end_row += plines(curwin->w_topline - 1);
1461#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001462 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 {
1464 validate_cheight();
1465 validate_virtcol();
1466 end_row += curwin->w_cline_height - 1 -
Bram Moolenaar02631462017-09-22 15:20:32 +02001467 curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 }
1469 if (end_row < curwin->w_height - p_so)
1470 {
1471#ifdef FEAT_DIFF
1472 if (can_fill)
1473 {
1474 ++curwin->w_topfill;
1475 check_topfill(curwin, TRUE);
1476 }
1477 else
1478 {
1479 --curwin->w_topline;
1480 curwin->w_topfill = 0;
1481 }
1482#else
1483 --curwin->w_topline;
1484#endif
1485#ifdef FEAT_FOLDING
Bram Moolenaarcde88542015-08-11 19:14:00 +02001486 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487#endif
1488 --curwin->w_botline; /* approximate w_botline */
1489 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1490 }
1491}
1492
1493/*
1494 * Scroll the screen one line up, but don't do it if it would move the cursor
1495 * off the screen.
1496 */
1497 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001498scrollup_clamp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499{
1500 int start_row;
1501
1502 if (curwin->w_topline == curbuf->b_ml.ml_line_count
1503#ifdef FEAT_DIFF
1504 && curwin->w_topfill == 0
1505#endif
1506 )
1507 return;
1508
1509 validate_cursor(); /* w_wrow needs to be valid */
1510
1511 /*
1512 * Compute the row number of the first row of the cursor line
1513 * and make sure it doesn't go off the screen. Make sure the cursor
1514 * doesn't go before 'scrolloff' lines from the screen start.
1515 */
1516#ifdef FEAT_DIFF
1517 start_row = curwin->w_wrow - plines_nofill(curwin->w_topline)
1518 - curwin->w_topfill;
1519#else
1520 start_row = curwin->w_wrow - plines(curwin->w_topline);
1521#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001522 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 {
1524 validate_virtcol();
Bram Moolenaar02631462017-09-22 15:20:32 +02001525 start_row -= curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 }
1527 if (start_row >= p_so)
1528 {
1529#ifdef FEAT_DIFF
1530 if (curwin->w_topfill > 0)
1531 --curwin->w_topfill;
1532 else
1533#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001534 {
1535#ifdef FEAT_FOLDING
1536 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
1537#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 ++curwin->w_topline;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 ++curwin->w_botline; /* approximate w_botline */
1541 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1542 }
1543}
1544#endif /* FEAT_INS_EXPAND */
1545
1546/*
1547 * Add one line above "lp->lnum". This can be a filler line, a closed fold or
1548 * a (wrapped) text line. Uses and sets "lp->fill".
1549 * Returns the height of the added line in "lp->height".
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01001550 * Lines above the first one are incredibly high: MAXCOL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 */
1552 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001553topline_back(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554{
1555#ifdef FEAT_DIFF
1556 if (lp->fill < diff_check_fill(curwin, lp->lnum))
1557 {
1558 /* Add a filler line. */
1559 ++lp->fill;
1560 lp->height = 1;
1561 }
1562 else
1563#endif
1564 {
1565 --lp->lnum;
1566#ifdef FEAT_DIFF
1567 lp->fill = 0;
1568#endif
1569 if (lp->lnum < 1)
1570 lp->height = MAXCOL;
1571 else
1572#ifdef FEAT_FOLDING
1573 if (hasFolding(lp->lnum, &lp->lnum, NULL))
1574 /* Add a closed fold */
1575 lp->height = 1;
1576 else
1577#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02001578 lp->height = PLINES_NOFILL(lp->lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 }
1580}
1581
1582/*
1583 * Add one line below "lp->lnum". This can be a filler line, a closed fold or
1584 * a (wrapped) text line. Uses and sets "lp->fill".
1585 * Returns the height of the added line in "lp->height".
1586 * Lines below the last one are incredibly high.
1587 */
1588 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001589botline_forw(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590{
1591#ifdef FEAT_DIFF
1592 if (lp->fill < diff_check_fill(curwin, lp->lnum + 1))
1593 {
1594 /* Add a filler line. */
1595 ++lp->fill;
1596 lp->height = 1;
1597 }
1598 else
1599#endif
1600 {
1601 ++lp->lnum;
1602#ifdef FEAT_DIFF
1603 lp->fill = 0;
1604#endif
1605 if (lp->lnum > curbuf->b_ml.ml_line_count)
1606 lp->height = MAXCOL;
1607 else
1608#ifdef FEAT_FOLDING
1609 if (hasFolding(lp->lnum, NULL, &lp->lnum))
1610 /* Add a closed fold */
1611 lp->height = 1;
1612 else
1613#endif
1614 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02001615 lp->height = PLINES_NOFILL(lp->lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 }
1617 }
1618}
1619
1620#ifdef FEAT_DIFF
1621/*
1622 * Switch from including filler lines below lp->lnum to including filler
1623 * lines above loff.lnum + 1. This keeps pointing to the same line.
1624 * When there are no filler lines nothing changes.
1625 */
1626 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001627botline_topline(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628{
1629 if (lp->fill > 0)
1630 {
1631 ++lp->lnum;
1632 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
1633 }
1634}
1635
1636/*
1637 * Switch from including filler lines above lp->lnum to including filler
1638 * lines below loff.lnum - 1. This keeps pointing to the same line.
1639 * When there are no filler lines nothing changes.
1640 */
1641 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001642topline_botline(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643{
1644 if (lp->fill > 0)
1645 {
1646 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
1647 --lp->lnum;
1648 }
1649}
1650#endif
1651
1652/*
1653 * Recompute topline to put the cursor at the top of the window.
1654 * Scroll at least "min_scroll" lines.
1655 * If "always" is TRUE, always set topline (for "zt").
1656 */
1657 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001658scroll_cursor_top(int min_scroll, int always)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659{
1660 int scrolled = 0;
1661 int extra = 0;
1662 int used;
1663 int i;
1664 linenr_T top; /* just above displayed lines */
1665 linenr_T bot; /* just below displayed lines */
1666 linenr_T old_topline = curwin->w_topline;
1667#ifdef FEAT_DIFF
1668 linenr_T old_topfill = curwin->w_topfill;
1669#endif
1670 linenr_T new_topline;
1671 int off = p_so;
1672
1673#ifdef FEAT_MOUSE
1674 if (mouse_dragging > 0)
1675 off = mouse_dragging - 1;
1676#endif
1677
1678 /*
1679 * Decrease topline until:
1680 * - it has become 1
1681 * - (part of) the cursor line is moved off the screen or
1682 * - moved at least 'scrolljump' lines and
1683 * - at least 'scrolloff' lines above and below the cursor
1684 */
1685 validate_cheight();
Bram Moolenaarcf619da2015-09-01 20:53:24 +02001686 used = curwin->w_cline_height; /* includes filler lines above */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 if (curwin->w_cursor.lnum < curwin->w_topline)
1688 scrolled = used;
1689
1690#ifdef FEAT_FOLDING
1691 if (hasFolding(curwin->w_cursor.lnum, &top, &bot))
1692 {
1693 --top;
1694 ++bot;
1695 }
1696 else
1697#endif
1698 {
1699 top = curwin->w_cursor.lnum - 1;
1700 bot = curwin->w_cursor.lnum + 1;
1701 }
1702 new_topline = top + 1;
1703
1704#ifdef FEAT_DIFF
Bram Moolenaara09a2c52015-09-08 17:31:59 +02001705 /* "used" already contains the number of filler lines above, don't add it
Bram Moolenaarcf619da2015-09-01 20:53:24 +02001706 * again.
Bram Moolenaara09a2c52015-09-08 17:31:59 +02001707 * Hide filler lines above cursor line by adding them to "extra". */
1708 extra += diff_check_fill(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709#endif
1710
1711 /*
1712 * Check if the lines from "top" to "bot" fit in the window. If they do,
1713 * set new_topline and advance "top" and "bot" to include more lines.
1714 */
1715 while (top > 0)
1716 {
1717#ifdef FEAT_FOLDING
1718 if (hasFolding(top, &top, NULL))
1719 /* count one logical line for a sequence of folded lines */
1720 i = 1;
1721 else
1722#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02001723 i = PLINES_NOFILL(top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 used += i;
1725 if (extra + i <= off && bot < curbuf->b_ml.ml_line_count)
1726 {
1727#ifdef FEAT_FOLDING
1728 if (hasFolding(bot, NULL, &bot))
1729 /* count one logical line for a sequence of folded lines */
1730 ++used;
1731 else
1732#endif
1733 used += plines(bot);
1734 }
1735 if (used > curwin->w_height)
1736 break;
1737 if (top < curwin->w_topline)
1738 scrolled += i;
1739
1740 /*
1741 * If scrolling is needed, scroll at least 'sj' lines.
1742 */
1743 if ((new_topline >= curwin->w_topline || scrolled > min_scroll)
1744 && extra >= off)
1745 break;
1746
1747 extra += i;
1748 new_topline = top;
1749 --top;
1750 ++bot;
1751 }
1752
1753 /*
1754 * If we don't have enough space, put cursor in the middle.
1755 * This makes sure we get the same position when using "k" and "j"
1756 * in a small window.
1757 */
1758 if (used > curwin->w_height)
1759 scroll_cursor_halfway(FALSE);
1760 else
1761 {
1762 /*
1763 * If "always" is FALSE, only adjust topline to a lower value, higher
1764 * value may happen with wrapping lines
1765 */
1766 if (new_topline < curwin->w_topline || always)
1767 curwin->w_topline = new_topline;
1768 if (curwin->w_topline > curwin->w_cursor.lnum)
1769 curwin->w_topline = curwin->w_cursor.lnum;
1770#ifdef FEAT_DIFF
1771 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
1772 if (curwin->w_topfill > 0 && extra > off)
1773 {
1774 curwin->w_topfill -= extra - off;
1775 if (curwin->w_topfill < 0)
1776 curwin->w_topfill = 0;
1777 }
1778 check_topfill(curwin, FALSE);
1779#endif
1780 if (curwin->w_topline != old_topline
1781#ifdef FEAT_DIFF
1782 || curwin->w_topfill != old_topfill
1783#endif
1784 )
1785 curwin->w_valid &=
1786 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
1787 curwin->w_valid |= VALID_TOPLINE;
1788 }
1789}
1790
1791/*
1792 * Set w_empty_rows and w_filler_rows for window "wp", having used up "used"
1793 * screen lines for text lines.
1794 */
1795 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001796set_empty_rows(win_T *wp, int used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797{
1798#ifdef FEAT_DIFF
1799 wp->w_filler_rows = 0;
1800#endif
1801 if (used == 0)
1802 wp->w_empty_rows = 0; /* single line that doesn't fit */
1803 else
1804 {
1805 wp->w_empty_rows = wp->w_height - used;
1806#ifdef FEAT_DIFF
1807 if (wp->w_botline <= wp->w_buffer->b_ml.ml_line_count)
1808 {
1809 wp->w_filler_rows = diff_check_fill(wp, wp->w_botline);
1810 if (wp->w_empty_rows > wp->w_filler_rows)
1811 wp->w_empty_rows -= wp->w_filler_rows;
1812 else
1813 {
1814 wp->w_filler_rows = wp->w_empty_rows;
1815 wp->w_empty_rows = 0;
1816 }
1817 }
1818#endif
1819 }
1820}
1821
1822/*
1823 * Recompute topline to put the cursor at the bottom of the window.
1824 * Scroll at least "min_scroll" lines.
1825 * If "set_topbot" is TRUE, set topline and botline first (for "zb").
1826 * This is messy stuff!!!
1827 */
1828 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001829scroll_cursor_bot(int min_scroll, int set_topbot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830{
1831 int used;
1832 int scrolled = 0;
1833 int extra = 0;
1834 int i;
1835 linenr_T line_count;
1836 linenr_T old_topline = curwin->w_topline;
1837 lineoff_T loff;
1838 lineoff_T boff;
1839#ifdef FEAT_DIFF
1840 int old_topfill = curwin->w_topfill;
1841 int fill_below_window;
1842#endif
1843 linenr_T old_botline = curwin->w_botline;
1844 linenr_T old_valid = curwin->w_valid;
1845 int old_empty_rows = curwin->w_empty_rows;
1846 linenr_T cln; /* Cursor Line Number */
1847
1848 cln = curwin->w_cursor.lnum;
1849 if (set_topbot)
1850 {
1851 used = 0;
1852 curwin->w_botline = cln + 1;
1853#ifdef FEAT_DIFF
1854 loff.fill = 0;
1855#endif
1856 for (curwin->w_topline = curwin->w_botline;
1857 curwin->w_topline > 1;
1858 curwin->w_topline = loff.lnum)
1859 {
1860 loff.lnum = curwin->w_topline;
1861 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01001862 if (loff.height == MAXCOL || used + loff.height > curwin->w_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 break;
1864 used += loff.height;
1865#ifdef FEAT_DIFF
1866 curwin->w_topfill = loff.fill;
1867#endif
1868 }
1869 set_empty_rows(curwin, used);
1870 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
1871 if (curwin->w_topline != old_topline
1872#ifdef FEAT_DIFF
1873 || curwin->w_topfill != old_topfill
1874#endif
1875 )
1876 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
1877 }
1878 else
1879 validate_botline();
1880
1881 /* The lines of the cursor line itself are always used. */
1882#ifdef FEAT_DIFF
1883 used = plines_nofill(cln);
1884#else
1885 validate_cheight();
1886 used = curwin->w_cline_height;
1887#endif
1888
1889 /* If the cursor is below botline, we will at least scroll by the height
1890 * of the cursor line. Correct for empty lines, which are really part of
1891 * botline. */
1892 if (cln >= curwin->w_botline)
1893 {
1894 scrolled = used;
1895 if (cln == curwin->w_botline)
1896 scrolled -= curwin->w_empty_rows;
1897 }
1898
1899 /*
1900 * Stop counting lines to scroll when
1901 * - hitting start of the file
1902 * - scrolled nothing or at least 'sj' lines
1903 * - at least 'so' lines below the cursor
1904 * - lines between botline and cursor have been counted
1905 */
1906#ifdef FEAT_FOLDING
1907 if (!hasFolding(curwin->w_cursor.lnum, &loff.lnum, &boff.lnum))
1908#endif
1909 {
1910 loff.lnum = cln;
1911 boff.lnum = cln;
1912 }
1913#ifdef FEAT_DIFF
1914 loff.fill = 0;
1915 boff.fill = 0;
1916 fill_below_window = diff_check_fill(curwin, curwin->w_botline)
1917 - curwin->w_filler_rows;
1918#endif
1919
1920 while (loff.lnum > 1)
1921 {
1922 /* Stop when scrolled nothing or at least "min_scroll", found "extra"
1923 * context for 'scrolloff' and counted all lines below the window. */
1924 if ((((scrolled <= 0 || scrolled >= min_scroll)
1925 && extra >= (
1926#ifdef FEAT_MOUSE
Bram Moolenaar9964e462007-05-05 17:54:07 +00001927 mouse_dragging > 0 ? mouse_dragging - 1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928#endif
1929 p_so))
1930 || boff.lnum + 1 > curbuf->b_ml.ml_line_count)
1931 && loff.lnum <= curwin->w_botline
1932#ifdef FEAT_DIFF
1933 && (loff.lnum < curwin->w_botline
1934 || loff.fill >= fill_below_window)
1935#endif
1936 )
1937 break;
1938
1939 /* Add one line above */
1940 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01001941 if (loff.height == MAXCOL)
1942 used = MAXCOL;
1943 else
1944 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 if (used > curwin->w_height)
1946 break;
1947 if (loff.lnum >= curwin->w_botline
1948#ifdef FEAT_DIFF
1949 && (loff.lnum > curwin->w_botline
1950 || loff.fill <= fill_below_window)
1951#endif
1952 )
1953 {
1954 /* Count screen lines that are below the window. */
1955 scrolled += loff.height;
1956 if (loff.lnum == curwin->w_botline
1957#ifdef FEAT_DIFF
Bram Moolenaar4e303c82018-11-24 14:27:44 +01001958 && loff.fill == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959#endif
1960 )
1961 scrolled -= curwin->w_empty_rows;
1962 }
1963
1964 if (boff.lnum < curbuf->b_ml.ml_line_count)
1965 {
1966 /* Add one line below */
1967 botline_forw(&boff);
1968 used += boff.height;
1969 if (used > curwin->w_height)
1970 break;
1971 if (extra < (
1972#ifdef FEAT_MOUSE
1973 mouse_dragging > 0 ? mouse_dragging - 1 :
1974#endif
1975 p_so) || scrolled < min_scroll)
1976 {
1977 extra += boff.height;
1978 if (boff.lnum >= curwin->w_botline
1979#ifdef FEAT_DIFF
1980 || (boff.lnum + 1 == curwin->w_botline
1981 && boff.fill > curwin->w_filler_rows)
1982#endif
1983 )
1984 {
1985 /* Count screen lines that are below the window. */
1986 scrolled += boff.height;
1987 if (boff.lnum == curwin->w_botline
1988#ifdef FEAT_DIFF
1989 && boff.fill == 0
1990#endif
1991 )
1992 scrolled -= curwin->w_empty_rows;
1993 }
1994 }
1995 }
1996 }
1997
1998 /* curwin->w_empty_rows is larger, no need to scroll */
1999 if (scrolled <= 0)
2000 line_count = 0;
2001 /* more than a screenfull, don't scroll but redraw */
2002 else if (used > curwin->w_height)
2003 line_count = used;
2004 /* scroll minimal number of lines */
2005 else
2006 {
2007 line_count = 0;
2008#ifdef FEAT_DIFF
2009 boff.fill = curwin->w_topfill;
2010#endif
2011 boff.lnum = curwin->w_topline - 1;
2012 for (i = 0; i < scrolled && boff.lnum < curwin->w_botline; )
2013 {
2014 botline_forw(&boff);
2015 i += boff.height;
2016 ++line_count;
2017 }
2018 if (i < scrolled) /* below curwin->w_botline, don't scroll */
2019 line_count = 9999;
2020 }
2021
2022 /*
2023 * Scroll up if the cursor is off the bottom of the screen a bit.
2024 * Otherwise put it at 1/2 of the screen.
2025 */
2026 if (line_count >= curwin->w_height && line_count > min_scroll)
2027 scroll_cursor_halfway(FALSE);
2028 else
2029 scrollup(line_count, TRUE);
2030
2031 /*
2032 * If topline didn't change we need to restore w_botline and w_empty_rows
2033 * (we changed them).
2034 * If topline did change, update_screen() will set botline.
2035 */
2036 if (curwin->w_topline == old_topline && set_topbot)
2037 {
2038 curwin->w_botline = old_botline;
2039 curwin->w_empty_rows = old_empty_rows;
2040 curwin->w_valid = old_valid;
2041 }
2042 curwin->w_valid |= VALID_TOPLINE;
2043}
2044
2045/*
2046 * Recompute topline to put the cursor halfway the window
2047 * If "atend" is TRUE, also put it halfway at the end of the file.
2048 */
2049 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002050scroll_cursor_halfway(int atend)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051{
2052 int above = 0;
2053 linenr_T topline;
2054#ifdef FEAT_DIFF
2055 int topfill = 0;
2056#endif
2057 int below = 0;
2058 int used;
2059 lineoff_T loff;
2060 lineoff_T boff;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002061#ifdef FEAT_DIFF
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002062 linenr_T old_topline = curwin->w_topline;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002063#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064
2065 loff.lnum = boff.lnum = curwin->w_cursor.lnum;
2066#ifdef FEAT_FOLDING
2067 (void)hasFolding(loff.lnum, &loff.lnum, &boff.lnum);
2068#endif
2069#ifdef FEAT_DIFF
2070 used = plines_nofill(loff.lnum);
2071 loff.fill = 0;
2072 boff.fill = 0;
2073#else
2074 used = plines(loff.lnum);
2075#endif
2076 topline = loff.lnum;
2077 while (topline > 1)
2078 {
2079 if (below <= above) /* add a line below the cursor first */
2080 {
2081 if (boff.lnum < curbuf->b_ml.ml_line_count)
2082 {
2083 botline_forw(&boff);
2084 used += boff.height;
2085 if (used > curwin->w_height)
2086 break;
2087 below += boff.height;
2088 }
2089 else
2090 {
2091 ++below; /* count a "~" line */
2092 if (atend)
2093 ++used;
2094 }
2095 }
2096
2097 if (below > above) /* add a line above the cursor */
2098 {
2099 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002100 if (loff.height == MAXCOL)
2101 used = MAXCOL;
2102 else
2103 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 if (used > curwin->w_height)
2105 break;
2106 above += loff.height;
2107 topline = loff.lnum;
2108#ifdef FEAT_DIFF
2109 topfill = loff.fill;
2110#endif
2111 }
2112 }
2113#ifdef FEAT_FOLDING
2114 if (!hasFolding(topline, &curwin->w_topline, NULL))
2115#endif
2116 curwin->w_topline = topline;
2117#ifdef FEAT_DIFF
2118 curwin->w_topfill = topfill;
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002119 if (old_topline > curwin->w_topline + curwin->w_height)
2120 curwin->w_botfill = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 check_topfill(curwin, FALSE);
2122#endif
2123 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2124 curwin->w_valid |= VALID_TOPLINE;
2125}
2126
2127/*
2128 * Correct the cursor position so that it is in a part of the screen at least
2129 * 'so' lines from the top and bottom, if possible.
2130 * If not possible, put it at the same position as scroll_cursor_halfway().
2131 * When called topline must be valid!
2132 */
2133 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002134cursor_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135{
2136 int above = 0; /* screen lines above topline */
2137 linenr_T topline;
2138 int below = 0; /* screen lines below botline */
2139 linenr_T botline;
2140 int above_wanted, below_wanted;
2141 linenr_T cln; /* Cursor Line Number */
2142 int max_off;
2143
2144 /*
2145 * How many lines we would like to have above/below the cursor depends on
2146 * whether the first/last line of the file is on screen.
2147 */
2148 above_wanted = p_so;
2149 below_wanted = p_so;
2150#ifdef FEAT_MOUSE
Bram Moolenaar9964e462007-05-05 17:54:07 +00002151 if (mouse_dragging > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 {
2153 above_wanted = mouse_dragging - 1;
2154 below_wanted = mouse_dragging - 1;
2155 }
2156#endif
2157 if (curwin->w_topline == 1)
2158 {
2159 above_wanted = 0;
2160 max_off = curwin->w_height / 2;
2161 if (below_wanted > max_off)
2162 below_wanted = max_off;
2163 }
2164 validate_botline();
2165 if (curwin->w_botline == curbuf->b_ml.ml_line_count + 1
2166#ifdef FEAT_MOUSE
Bram Moolenaar9964e462007-05-05 17:54:07 +00002167 && mouse_dragging == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168#endif
2169 )
2170 {
2171 below_wanted = 0;
2172 max_off = (curwin->w_height - 1) / 2;
2173 if (above_wanted > max_off)
2174 above_wanted = max_off;
2175 }
2176
2177 /*
2178 * If there are sufficient file-lines above and below the cursor, we can
2179 * return now.
2180 */
2181 cln = curwin->w_cursor.lnum;
2182 if (cln >= curwin->w_topline + above_wanted
2183 && cln < curwin->w_botline - below_wanted
2184#ifdef FEAT_FOLDING
2185 && !hasAnyFolding(curwin)
2186#endif
2187 )
2188 return;
2189
2190 /*
2191 * Narrow down the area where the cursor can be put by taking lines from
2192 * the top and the bottom until:
2193 * - the desired context lines are found
2194 * - the lines from the top is past the lines from the bottom
2195 */
2196 topline = curwin->w_topline;
2197 botline = curwin->w_botline - 1;
2198#ifdef FEAT_DIFF
2199 /* count filler lines as context */
2200 above = curwin->w_topfill;
2201 below = curwin->w_filler_rows;
2202#endif
2203 while ((above < above_wanted || below < below_wanted) && topline < botline)
2204 {
2205 if (below < below_wanted && (below <= above || above >= above_wanted))
2206 {
2207#ifdef FEAT_FOLDING
2208 if (hasFolding(botline, &botline, NULL))
2209 ++below;
2210 else
2211#endif
2212 below += plines(botline);
2213 --botline;
2214 }
2215 if (above < above_wanted && (above < below || below >= below_wanted))
2216 {
2217#ifdef FEAT_FOLDING
2218 if (hasFolding(topline, NULL, &topline))
2219 ++above;
2220 else
2221#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002222 above += PLINES_NOFILL(topline);
2223#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 /* Count filler lines below this line as context. */
2225 if (topline < botline)
2226 above += diff_check_fill(curwin, topline + 1);
2227#endif
2228 ++topline;
2229 }
2230 }
2231 if (topline == botline || botline == 0)
2232 curwin->w_cursor.lnum = topline;
2233 else if (topline > botline)
2234 curwin->w_cursor.lnum = botline;
2235 else
2236 {
2237 if (cln < topline && curwin->w_topline > 1)
2238 {
2239 curwin->w_cursor.lnum = topline;
2240 curwin->w_valid &=
2241 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2242 }
2243 if (cln > botline && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2244 {
2245 curwin->w_cursor.lnum = botline;
2246 curwin->w_valid &=
2247 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2248 }
2249 }
2250 curwin->w_valid |= VALID_TOPLINE;
2251}
2252
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01002253static void get_scroll_overlap(lineoff_T *lp, int dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254
2255/*
2256 * move screen 'count' pages up or down and update screen
2257 *
2258 * return FAIL for failure, OK otherwise
2259 */
2260 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002261onepage(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262{
2263 long n;
2264 int retval = OK;
2265 lineoff_T loff;
2266 linenr_T old_topline = curwin->w_topline;
2267
2268 if (curbuf->b_ml.ml_line_count == 1) /* nothing to do */
2269 {
2270 beep_flush();
2271 return FAIL;
2272 }
2273
2274 for ( ; count > 0; --count)
2275 {
2276 validate_botline();
2277 /*
2278 * It's an error to move a page up when the first line is already on
2279 * the screen. It's an error to move a page down when the last line
2280 * is on the screen and the topline is 'scrolloff' lines from the
2281 * last line.
2282 */
2283 if (dir == FORWARD
2284 ? ((curwin->w_topline >= curbuf->b_ml.ml_line_count - p_so)
2285 && curwin->w_botline > curbuf->b_ml.ml_line_count)
2286 : (curwin->w_topline == 1
2287#ifdef FEAT_DIFF
2288 && curwin->w_topfill ==
2289 diff_check_fill(curwin, curwin->w_topline)
2290#endif
2291 ))
2292 {
2293 beep_flush();
2294 retval = FAIL;
2295 break;
2296 }
2297
2298#ifdef FEAT_DIFF
2299 loff.fill = 0;
2300#endif
2301 if (dir == FORWARD)
2302 {
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002303 if (ONE_WINDOW && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002305 /* Vi compatible scrolling */
2306 if (p_window <= 2)
2307 ++curwin->w_topline;
2308 else
2309 curwin->w_topline += p_window - 2;
2310 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
2311 curwin->w_topline = curbuf->b_ml.ml_line_count;
2312 curwin->w_cursor.lnum = curwin->w_topline;
2313 }
2314 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2315 {
2316 /* at end of file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 curwin->w_topline = curbuf->b_ml.ml_line_count;
2318#ifdef FEAT_DIFF
2319 curwin->w_topfill = 0;
2320#endif
2321 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2322 }
2323 else
2324 {
2325 /* For the overlap, start with the line just below the window
2326 * and go upwards. */
2327 loff.lnum = curwin->w_botline;
2328#ifdef FEAT_DIFF
2329 loff.fill = diff_check_fill(curwin, loff.lnum)
2330 - curwin->w_filler_rows;
2331#endif
2332 get_scroll_overlap(&loff, -1);
2333 curwin->w_topline = loff.lnum;
2334#ifdef FEAT_DIFF
2335 curwin->w_topfill = loff.fill;
2336 check_topfill(curwin, FALSE);
2337#endif
2338 curwin->w_cursor.lnum = curwin->w_topline;
2339 curwin->w_valid &= ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|
2340 VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2341 }
2342 }
2343 else /* dir == BACKWARDS */
2344 {
2345#ifdef FEAT_DIFF
2346 if (curwin->w_topline == 1)
2347 {
2348 /* Include max number of filler lines */
2349 max_topfill();
2350 continue;
2351 }
2352#endif
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002353 if (ONE_WINDOW && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002354 {
2355 /* Vi compatible scrolling (sort of) */
2356 if (p_window <= 2)
2357 --curwin->w_topline;
2358 else
2359 curwin->w_topline -= p_window - 2;
2360 if (curwin->w_topline < 1)
2361 curwin->w_topline = 1;
2362 curwin->w_cursor.lnum = curwin->w_topline + p_window - 1;
2363 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
2364 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2365 continue;
2366 }
2367
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 /* Find the line at the top of the window that is going to be the
2369 * line at the bottom of the window. Make sure this results in
2370 * the same line as before doing CTRL-F. */
2371 loff.lnum = curwin->w_topline - 1;
2372#ifdef FEAT_DIFF
2373 loff.fill = diff_check_fill(curwin, loff.lnum + 1)
2374 - curwin->w_topfill;
2375#endif
2376 get_scroll_overlap(&loff, 1);
2377
2378 if (loff.lnum >= curbuf->b_ml.ml_line_count)
2379 {
2380 loff.lnum = curbuf->b_ml.ml_line_count;
2381#ifdef FEAT_DIFF
2382 loff.fill = 0;
2383 }
2384 else
2385 {
2386 botline_topline(&loff);
2387#endif
2388 }
2389 curwin->w_cursor.lnum = loff.lnum;
2390
2391 /* Find the line just above the new topline to get the right line
2392 * at the bottom of the window. */
2393 n = 0;
2394 while (n <= curwin->w_height && loff.lnum >= 1)
2395 {
2396 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002397 if (loff.height == MAXCOL)
2398 n = MAXCOL;
2399 else
2400 n += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 }
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002402 if (loff.lnum < 1) /* at begin of file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 {
2404 curwin->w_topline = 1;
2405#ifdef FEAT_DIFF
2406 max_topfill();
2407#endif
2408 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2409 }
2410 else
2411 {
2412 /* Go two lines forward again. */
2413#ifdef FEAT_DIFF
2414 topline_botline(&loff);
2415#endif
2416 botline_forw(&loff);
2417 botline_forw(&loff);
2418#ifdef FEAT_DIFF
2419 botline_topline(&loff);
2420#endif
2421#ifdef FEAT_FOLDING
2422 /* We're at the wrong end of a fold now. */
2423 (void)hasFolding(loff.lnum, &loff.lnum, NULL);
2424#endif
2425
2426 /* Always scroll at least one line. Avoid getting stuck on
2427 * very long lines. */
2428 if (loff.lnum >= curwin->w_topline
2429#ifdef FEAT_DIFF
2430 && (loff.lnum > curwin->w_topline
2431 || loff.fill >= curwin->w_topfill)
2432#endif
2433 )
2434 {
2435#ifdef FEAT_DIFF
2436 /* First try using the maximum number of filler lines. If
2437 * that's not enough, backup one line. */
2438 loff.fill = curwin->w_topfill;
2439 if (curwin->w_topfill < diff_check_fill(curwin,
2440 curwin->w_topline))
2441 max_topfill();
2442 if (curwin->w_topfill == loff.fill)
2443#endif
2444 {
2445 --curwin->w_topline;
2446#ifdef FEAT_DIFF
2447 curwin->w_topfill = 0;
2448#endif
2449 }
2450 comp_botline(curwin);
2451 curwin->w_cursor.lnum = curwin->w_botline - 1;
Bram Moolenaar3d6db142014-03-28 21:49:32 +01002452 curwin->w_valid &=
2453 ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|VALID_CROW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 }
2455 else
2456 {
2457 curwin->w_topline = loff.lnum;
2458#ifdef FEAT_DIFF
2459 curwin->w_topfill = loff.fill;
2460 check_topfill(curwin, FALSE);
2461#endif
2462 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2463 }
2464 }
2465 }
2466 }
2467#ifdef FEAT_FOLDING
2468 foldAdjustCursor();
2469#endif
2470 cursor_correct();
Bram Moolenaarbc54f3f2016-09-04 14:34:28 +02002471 check_cursor_col();
Bram Moolenaar7c626922005-02-07 22:01:03 +00002472 if (retval == OK)
2473 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 curwin->w_valid &= ~(VALID_WCOL|VALID_WROW|VALID_VIRTCOL);
2475
Bram Moolenaar907dad72018-07-10 15:07:15 +02002476 if (retval == OK && dir == FORWARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 {
Bram Moolenaar907dad72018-07-10 15:07:15 +02002478 // Avoid the screen jumping up and down when 'scrolloff' is non-zero.
2479 // But make sure we scroll at least one line (happens with mix of long
2480 // wrapping lines and non-wrapping line).
2481 if (check_top_offset())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 {
Bram Moolenaar907dad72018-07-10 15:07:15 +02002483 scroll_cursor_top(1, FALSE);
2484 if (curwin->w_topline <= old_topline
2485 && old_topline < curbuf->b_ml.ml_line_count)
2486 {
2487 curwin->w_topline = old_topline + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488#ifdef FEAT_FOLDING
Bram Moolenaar907dad72018-07-10 15:07:15 +02002489 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2490#endif
2491 }
2492 }
2493#ifdef FEAT_FOLDING
2494 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2496#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 }
2498
2499 redraw_later(VALID);
2500 return retval;
2501}
2502
2503/*
2504 * Decide how much overlap to use for page-up or page-down scrolling.
2505 * This is symmetric, so that doing both keeps the same lines displayed.
2506 * Three lines are examined:
2507 *
2508 * before CTRL-F after CTRL-F / before CTRL-B
2509 * etc. l1
2510 * l1 last but one line ------------
2511 * l2 last text line l2 top text line
2512 * ------------- l3 second text line
2513 * l3 etc.
2514 */
2515 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002516get_scroll_overlap(lineoff_T *lp, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517{
2518 int h1, h2, h3, h4;
2519 int min_height = curwin->w_height - 2;
2520 lineoff_T loff0, loff1, loff2;
2521
2522#ifdef FEAT_DIFF
2523 if (lp->fill > 0)
2524 lp->height = 1;
2525 else
2526 lp->height = plines_nofill(lp->lnum);
2527#else
2528 lp->height = plines(lp->lnum);
2529#endif
2530 h1 = lp->height;
2531 if (h1 > min_height)
2532 return; /* no overlap */
2533
2534 loff0 = *lp;
2535 if (dir > 0)
2536 botline_forw(lp);
2537 else
2538 topline_back(lp);
2539 h2 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002540 if (h2 == MAXCOL || h2 + h1 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 {
2542 *lp = loff0; /* no overlap */
2543 return;
2544 }
2545
2546 loff1 = *lp;
2547 if (dir > 0)
2548 botline_forw(lp);
2549 else
2550 topline_back(lp);
2551 h3 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002552 if (h3 == MAXCOL || h3 + h2 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 {
2554 *lp = loff0; /* no overlap */
2555 return;
2556 }
2557
2558 loff2 = *lp;
2559 if (dir > 0)
2560 botline_forw(lp);
2561 else
2562 topline_back(lp);
2563 h4 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002564 if (h4 == MAXCOL || h4 + h3 + h2 > min_height || h3 + h2 + h1 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 *lp = loff1; /* 1 line overlap */
2566 else
2567 *lp = loff2; /* 2 lines overlap */
2568 return;
2569}
2570
2571/* #define KEEP_SCREEN_LINE */
2572/*
2573 * Scroll 'scroll' lines up or down.
2574 */
2575 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002576halfpage(int flag, linenr_T Prenum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577{
2578 long scrolled = 0;
2579 int i;
2580 int n;
2581 int room;
2582
2583 if (Prenum)
2584 curwin->w_p_scr = (Prenum > curwin->w_height) ?
2585 curwin->w_height : Prenum;
2586 n = (curwin->w_p_scr <= curwin->w_height) ?
2587 curwin->w_p_scr : curwin->w_height;
2588
Bram Moolenaard5d37532017-03-27 23:02:07 +02002589 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 validate_botline();
2591 room = curwin->w_empty_rows;
2592#ifdef FEAT_DIFF
2593 room += curwin->w_filler_rows;
2594#endif
2595 if (flag)
2596 {
2597 /*
2598 * scroll the text up
2599 */
2600 while (n > 0 && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2601 {
2602#ifdef FEAT_DIFF
2603 if (curwin->w_topfill > 0)
2604 {
2605 i = 1;
2606 if (--n < 0 && scrolled > 0)
2607 break;
2608 --curwin->w_topfill;
2609 }
2610 else
2611#endif
2612 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002613 i = PLINES_NOFILL(curwin->w_topline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 n -= i;
2615 if (n < 0 && scrolled > 0)
2616 break;
2617#ifdef FEAT_FOLDING
2618 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
2619#endif
2620 ++curwin->w_topline;
2621#ifdef FEAT_DIFF
2622 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
2623#endif
2624
2625#ifndef KEEP_SCREEN_LINE
2626 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
2627 {
2628 ++curwin->w_cursor.lnum;
2629 curwin->w_valid &=
2630 ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
2631 }
2632#endif
2633 }
2634 curwin->w_valid &= ~(VALID_CROW|VALID_WROW);
2635 scrolled += i;
2636
2637 /*
2638 * Correct w_botline for changed w_topline.
2639 * Won't work when there are filler lines.
2640 */
2641#ifdef FEAT_DIFF
2642 if (curwin->w_p_diff)
2643 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
2644 else
2645#endif
2646 {
2647 room += i;
2648 do
2649 {
2650 i = plines(curwin->w_botline);
2651 if (i > room)
2652 break;
2653#ifdef FEAT_FOLDING
2654 (void)hasFolding(curwin->w_botline, NULL,
2655 &curwin->w_botline);
2656#endif
2657 ++curwin->w_botline;
2658 room -= i;
2659 } while (curwin->w_botline <= curbuf->b_ml.ml_line_count);
2660 }
2661 }
2662
2663#ifndef KEEP_SCREEN_LINE
2664 /*
2665 * When hit bottom of the file: move cursor down.
2666 */
2667 if (n > 0)
2668 {
2669# ifdef FEAT_FOLDING
2670 if (hasAnyFolding(curwin))
2671 {
2672 while (--n >= 0
2673 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
2674 {
2675 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2676 &curwin->w_cursor.lnum);
2677 ++curwin->w_cursor.lnum;
2678 }
2679 }
2680 else
2681# endif
2682 curwin->w_cursor.lnum += n;
2683 check_cursor_lnum();
2684 }
2685#else
2686 /* try to put the cursor in the same screen line */
2687 while ((curwin->w_cursor.lnum < curwin->w_topline || scrolled > 0)
2688 && curwin->w_cursor.lnum < curwin->w_botline - 1)
2689 {
2690 scrolled -= plines(curwin->w_cursor.lnum);
2691 if (scrolled < 0 && curwin->w_cursor.lnum >= curwin->w_topline)
2692 break;
2693# ifdef FEAT_FOLDING
2694 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2695 &curwin->w_cursor.lnum);
2696# endif
2697 ++curwin->w_cursor.lnum;
2698 }
2699#endif
2700 }
2701 else
2702 {
2703 /*
2704 * scroll the text down
2705 */
2706 while (n > 0 && curwin->w_topline > 1)
2707 {
2708#ifdef FEAT_DIFF
2709 if (curwin->w_topfill < diff_check_fill(curwin, curwin->w_topline))
2710 {
2711 i = 1;
2712 if (--n < 0 && scrolled > 0)
2713 break;
2714 ++curwin->w_topfill;
2715 }
2716 else
2717#endif
2718 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002719 i = PLINES_NOFILL(curwin->w_topline - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 n -= i;
2721 if (n < 0 && scrolled > 0)
2722 break;
2723 --curwin->w_topline;
2724#ifdef FEAT_FOLDING
2725 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2726#endif
2727#ifdef FEAT_DIFF
2728 curwin->w_topfill = 0;
2729#endif
2730 }
2731 curwin->w_valid &= ~(VALID_CROW|VALID_WROW|
2732 VALID_BOTLINE|VALID_BOTLINE_AP);
2733 scrolled += i;
2734#ifndef KEEP_SCREEN_LINE
2735 if (curwin->w_cursor.lnum > 1)
2736 {
2737 --curwin->w_cursor.lnum;
2738 curwin->w_valid &= ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
2739 }
2740#endif
2741 }
2742#ifndef KEEP_SCREEN_LINE
2743 /*
2744 * When hit top of the file: move cursor up.
2745 */
2746 if (n > 0)
2747 {
2748 if (curwin->w_cursor.lnum <= (linenr_T)n)
2749 curwin->w_cursor.lnum = 1;
2750 else
2751# ifdef FEAT_FOLDING
2752 if (hasAnyFolding(curwin))
2753 {
2754 while (--n >= 0 && curwin->w_cursor.lnum > 1)
2755 {
2756 --curwin->w_cursor.lnum;
2757 (void)hasFolding(curwin->w_cursor.lnum,
2758 &curwin->w_cursor.lnum, NULL);
2759 }
2760 }
2761 else
2762# endif
2763 curwin->w_cursor.lnum -= n;
2764 }
2765#else
2766 /* try to put the cursor in the same screen line */
2767 scrolled += n; /* move cursor when topline is 1 */
2768 while (curwin->w_cursor.lnum > curwin->w_topline
2769 && (scrolled > 0 || curwin->w_cursor.lnum >= curwin->w_botline))
2770 {
2771 scrolled -= plines(curwin->w_cursor.lnum - 1);
2772 if (scrolled < 0 && curwin->w_cursor.lnum < curwin->w_botline)
2773 break;
2774 --curwin->w_cursor.lnum;
2775# ifdef FEAT_FOLDING
2776 foldAdjustCursor();
2777# endif
2778 }
2779#endif
2780 }
2781# ifdef FEAT_FOLDING
2782 /* Move cursor to first line of closed fold. */
2783 foldAdjustCursor();
2784# endif
2785#ifdef FEAT_DIFF
2786 check_topfill(curwin, !flag);
2787#endif
2788 cursor_correct();
2789 beginline(BL_SOL | BL_FIX);
2790 redraw_later(VALID);
2791}
Bram Moolenaar860cae12010-06-05 23:22:07 +02002792
Bram Moolenaar860cae12010-06-05 23:22:07 +02002793 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002794do_check_cursorbind(void)
Bram Moolenaar860cae12010-06-05 23:22:07 +02002795{
2796 linenr_T line = curwin->w_cursor.lnum;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01002797 colnr_T col = curwin->w_cursor.col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01002798 colnr_T coladd = curwin->w_cursor.coladd;
Bram Moolenaar524780d2012-03-28 14:19:50 +02002799 colnr_T curswant = curwin->w_curswant;
2800 int set_curswant = curwin->w_set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002801 win_T *old_curwin = curwin;
2802 buf_T *old_curbuf = curbuf;
Bram Moolenaar61452852011-02-01 18:01:11 +01002803 int restart_edit_save;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002804 int old_VIsual_select = VIsual_select;
2805 int old_VIsual_active = VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002806
2807 /*
2808 * loop through the cursorbound windows
2809 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02002810 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002811 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar860cae12010-06-05 23:22:07 +02002812 {
2813 curbuf = curwin->w_buffer;
2814 /* skip original window and windows with 'noscrollbind' */
2815 if (curwin != old_curwin && curwin->w_p_crb)
2816 {
2817# ifdef FEAT_DIFF
2818 if (curwin->w_p_diff)
Bram Moolenaar025e3e02016-10-18 14:50:18 +02002819 curwin->w_cursor.lnum =
2820 diff_get_corresponding_line(old_curbuf, line);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002821 else
2822# endif
2823 curwin->w_cursor.lnum = line;
2824 curwin->w_cursor.col = col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01002825 curwin->w_cursor.coladd = coladd;
Bram Moolenaar524780d2012-03-28 14:19:50 +02002826 curwin->w_curswant = curswant;
2827 curwin->w_set_curswant = set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002828
Bram Moolenaar61452852011-02-01 18:01:11 +01002829 /* Make sure the cursor is in a valid position. Temporarily set
2830 * "restart_edit" to allow the cursor to be beyond the EOL. */
2831 restart_edit_save = restart_edit;
2832 restart_edit = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002833 check_cursor();
Bram Moolenaar1b9750d2017-01-15 20:51:37 +01002834# ifdef FEAT_SYN_HL
Bram Moolenaar9506cad2017-01-15 13:53:49 +01002835 if (curwin->w_p_cul || curwin->w_p_cuc)
Bram Moolenaar519d7782017-01-14 14:54:33 +01002836 validate_cursor();
Bram Moolenaar1b9750d2017-01-15 20:51:37 +01002837# endif
Bram Moolenaar61452852011-02-01 18:01:11 +01002838 restart_edit = restart_edit_save;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002839 /* Correct cursor for multi-byte character. */
2840 if (has_mbyte)
2841 mb_adjust_cursor();
Bram Moolenaar9506cad2017-01-15 13:53:49 +01002842 redraw_later(VALID);
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01002843
2844 /* Only scroll when 'scrollbind' hasn't done this. */
2845 if (!curwin->w_p_scb)
2846 update_topline();
Bram Moolenaar860cae12010-06-05 23:22:07 +02002847 curwin->w_redr_status = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002848 }
2849 }
2850
2851 /*
2852 * reset current-window
2853 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02002854 VIsual_select = old_VIsual_select;
2855 VIsual_active = old_VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002856 curwin = old_curwin;
2857 curbuf = old_curbuf;
2858}