blob: fde7f20e253cd8aa77d51957f0fd9e69ad8843be [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 int scrolljump_value(void);
23static int check_top_offset(void);
24static void curs_rows(win_T *wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000025
26typedef struct
27{
Bram Moolenaar85a20022019-12-21 18:25:54 +010028 linenr_T lnum; // line number
Bram Moolenaar071d4272004-06-13 20:20:40 +000029#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +010030 int fill; // filler lines
Bram Moolenaar071d4272004-06-13 20:20:40 +000031#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +010032 int height; // height of added line
Bram Moolenaar071d4272004-06-13 20:20:40 +000033} lineoff_T;
34
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010035static void topline_back(lineoff_T *lp);
36static void botline_forw(lineoff_T *lp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000037
38/*
Bram Moolenaarf6196f42022-10-02 21:29:55 +010039 * Reduce "n" for the screen lines skipped with "wp->w_skipcol".
40 */
41 static int
42adjust_plines_for_skipcol(win_T *wp, int n)
43{
44 if (wp->w_skipcol == 0)
45 return n;
46
47 int off = 0;
48 int width = wp->w_width - win_col_off(wp);
49 if (wp->w_skipcol >= width)
50 {
51 ++off;
52 int skip = wp->w_skipcol - width;
Bram Moolenaarb6aab8f2022-10-03 20:01:16 +010053 width += win_col_off2(wp);
Bram Moolenaarf6196f42022-10-02 21:29:55 +010054 while (skip >= width)
55 {
56 ++off;
57 skip -= width;
58 }
59 }
60 wp->w_valid &= ~VALID_WROW;
61 return n - off;
62}
63
64/*
Bram Moolenaard5337ef2022-10-20 20:15:47 +010065 * Return how many lines "lnum" will take on the screen, taking into account
66 * whether it is the first line, whether w_skipcol is non-zero and limiting to
67 * the window height.
68 */
69 static int
70plines_correct_topline(win_T *wp, linenr_T lnum)
71{
72 int n;
73#ifdef FEAT_DIFF
74 if (lnum == wp->w_topline)
75 n = plines_win_nofill(wp, lnum, FALSE) + wp->w_topfill;
76 else
77#endif
78 n = plines_win(wp, lnum, FALSE);
79 if (lnum == wp->w_topline)
80 n = adjust_plines_for_skipcol(wp, n);
81 if (n > wp->w_height)
82 n = wp->w_height;
83 return n;
84}
85
86/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000087 * Compute wp->w_botline for the current wp->w_topline. Can be called after
88 * wp->w_topline changed.
89 */
90 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +010091comp_botline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000092{
93 int n;
94 linenr_T lnum;
95 int done;
96#ifdef FEAT_FOLDING
97 linenr_T last;
98 int folded;
99#endif
100
101 /*
102 * If w_cline_row is valid, start there.
103 * Otherwise have to start at w_topline.
104 */
105 check_cursor_moved(wp);
106 if (wp->w_valid & VALID_CROW)
107 {
108 lnum = wp->w_cursor.lnum;
109 done = wp->w_cline_row;
110 }
111 else
112 {
113 lnum = wp->w_topline;
114 done = 0;
115 }
116
117 for ( ; lnum <= wp->w_buffer->b_ml.ml_line_count; ++lnum)
118 {
119#ifdef FEAT_FOLDING
120 last = lnum;
121 folded = FALSE;
122 if (hasFoldingWin(wp, lnum, NULL, &last, TRUE, NULL))
123 {
124 n = 1;
125 folded = TRUE;
126 }
127 else
128#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100129 {
Bram Moolenaard5337ef2022-10-20 20:15:47 +0100130 n = plines_correct_topline(wp, lnum);
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100131 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 if (
133#ifdef FEAT_FOLDING
134 lnum <= wp->w_cursor.lnum && last >= wp->w_cursor.lnum
135#else
136 lnum == wp->w_cursor.lnum
137#endif
138 )
139 {
140 wp->w_cline_row = done;
141 wp->w_cline_height = n;
142#ifdef FEAT_FOLDING
143 wp->w_cline_folded = folded;
144#endif
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100145 redraw_for_cursorline(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146 wp->w_valid |= (VALID_CROW|VALID_CHEIGHT);
147 }
148 if (done + n > wp->w_height)
149 break;
150 done += n;
151#ifdef FEAT_FOLDING
152 lnum = last;
153#endif
154 }
155
Bram Moolenaar85a20022019-12-21 18:25:54 +0100156 // wp->w_botline is the line that is just below the window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 wp->w_botline = lnum;
158 wp->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
159
160 set_empty_rows(wp, done);
161}
162
163/*
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100164 * Redraw when w_cline_row changes and 'relativenumber' or 'cursorline' is
165 * set.
166 */
Bram Moolenaarbbb5f8d2019-01-31 13:22:32 +0100167 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100168redraw_for_cursorline(win_T *wp)
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100169{
170 if ((wp->w_p_rnu
171#ifdef FEAT_SYN_HL
172 || wp->w_p_cul
173#endif
174 )
175 && (wp->w_valid & VALID_CROW) == 0
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200176 && !pum_visible())
Bram Moolenaar90a99792018-09-12 21:52:18 +0200177 {
zeertzjqc20e46a2022-03-23 14:55:23 +0000178 // win_line() will redraw the number column and cursorline only.
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100179 redraw_win_later(wp, UPD_VALID);
Bram Moolenaar90a99792018-09-12 21:52:18 +0200180 }
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100181}
182
zeertzjq3e559cd2022-03-27 19:26:55 +0100183#ifdef FEAT_SYN_HL
184/*
185 * Redraw when w_virtcol changes and 'cursorcolumn' is set or 'cursorlineopt'
186 * contains "screenline".
187 */
188 static void
189redraw_for_cursorcolumn(win_T *wp)
190{
191 if ((wp->w_valid & VALID_VIRTCOL) == 0 && !pum_visible())
192 {
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100193 // When 'cursorcolumn' is set need to redraw with UPD_SOME_VALID.
zeertzjq3e559cd2022-03-27 19:26:55 +0100194 if (wp->w_p_cuc)
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100195 redraw_win_later(wp, UPD_SOME_VALID);
196 // When 'cursorlineopt' contains "screenline" need to redraw with
197 // UPD_VALID.
zeertzjq3e559cd2022-03-27 19:26:55 +0100198 else if (wp->w_p_cul && (wp->w_p_culopt_flags & CULOPT_SCRLINE))
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100199 redraw_win_later(wp, UPD_VALID);
zeertzjq3e559cd2022-03-27 19:26:55 +0100200 }
201}
202#endif
203
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100204/*
Yee Cheng Chin81ba26e2022-11-18 12:52:50 +0000205 * Calculates how much overlap the smoothscroll marker "<<<" overlaps with
206 * buffer text for curwin.
207 * Parameter "extra2" should be the padding on the 2nd line, not the first
208 * line.
209 * Returns the number of columns of overlap with buffer text, excluding the
210 * extra padding on the ledge.
211 */
212 static int
213smoothscroll_marker_overlap(int extra2)
214{
215#if defined(FEAT_LINEBREAK)
216 // We don't draw the <<< marker when in showbreak mode, thus no need to
217 // account for it. See wlv_screen_line().
218 if (*get_showbreak_value(curwin) != NUL)
219 return 0;
220#endif
221 return extra2 > 3 ? 0 : 3 - extra2;
222}
223
224/*
Bram Moolenaarf32fb932022-11-17 11:34:38 +0000225 * Set curwin->s_skipcol to zero and redraw later if needed.
226 */
227 static void
228reset_skipcol(void)
229{
230 if (curwin->w_skipcol != 0)
231 {
232 curwin->w_skipcol = 0;
233
234 // Should use the least expensive way that displays all that changed.
235 // UPD_NOT_VALID is too expensive, UPD_REDRAW_TOP does not redraw
236 // enough when the top line gets another screen line.
237 redraw_later(UPD_SOME_VALID);
238 }
239}
240
241/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242 * Update curwin->w_topline and redraw if necessary.
243 * Used to update the screen before printing a message.
244 */
245 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100246update_topline_redraw(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247{
248 update_topline();
249 if (must_redraw)
250 update_screen(0);
251}
252
253/*
254 * Update curwin->w_topline to move the cursor onto the screen.
255 */
256 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100257update_topline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258{
259 long line_count;
260 int halfheight;
261 int n;
262 linenr_T old_topline;
263#ifdef FEAT_DIFF
264 int old_topfill;
265#endif
266#ifdef FEAT_FOLDING
267 linenr_T lnum;
268#endif
269 int check_topline = FALSE;
270 int check_botline = FALSE;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +0100271 long *so_ptr = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100272 int save_so = *so_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273
Luuk van Baal13ece2a2022-10-03 15:28:08 +0100274 // Cursor is updated instead when this is TRUE for 'splitkeep'.
275 if (skip_update_topline)
276 return;
277
Bram Moolenaar85a20022019-12-21 18:25:54 +0100278 // If there is no valid screen and when the window height is zero just use
279 // the cursor line.
Bram Moolenaard5d37532017-03-27 23:02:07 +0200280 if (!screen_valid(TRUE) || curwin->w_height == 0)
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200281 {
Bram Moolenaar3b6d57f2020-11-01 21:56:40 +0100282 check_cursor_lnum();
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200283 curwin->w_topline = curwin->w_cursor.lnum;
284 curwin->w_botline = curwin->w_topline;
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200285 curwin->w_scbind_pos = 1;
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200286 return;
287 }
288
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 check_cursor_moved(curwin);
290 if (curwin->w_valid & VALID_TOPLINE)
291 return;
292
Bram Moolenaar85a20022019-12-21 18:25:54 +0100293 // When dragging with the mouse, don't scroll that quickly
Bram Moolenaar9964e462007-05-05 17:54:07 +0000294 if (mouse_dragging > 0)
Bram Moolenaar375e3392019-01-31 18:26:10 +0100295 *so_ptr = mouse_dragging - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296
297 old_topline = curwin->w_topline;
298#ifdef FEAT_DIFF
299 old_topfill = curwin->w_topfill;
300#endif
301
302 /*
303 * If the buffer is empty, always set topline to 1.
304 */
Bram Moolenaar85a20022019-12-21 18:25:54 +0100305 if (BUFEMPTY()) // special case - file is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 {
307 if (curwin->w_topline != 1)
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100308 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 curwin->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 curwin->w_botline = 2;
311 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 curwin->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 }
314
315 /*
316 * If the cursor is above or near the top of the window, scroll the window
317 * to show the line the cursor is in, with 'scrolloff' context.
318 */
319 else
320 {
Bram Moolenaar46b54742022-10-06 15:46:49 +0100321 if (curwin->w_topline > 1 || curwin->w_skipcol > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100323 // If the cursor is above topline, scrolling is always needed.
324 // If the cursor is far below topline and there is no folding,
325 // scrolling down is never needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326 if (curwin->w_cursor.lnum < curwin->w_topline)
327 check_topline = TRUE;
328 else if (check_top_offset())
329 check_topline = TRUE;
Bram Moolenaar46b54742022-10-06 15:46:49 +0100330 else if (curwin->w_cursor.lnum == curwin->w_topline)
331 {
332 colnr_T vcol;
333
Yee Cheng Chin81ba26e2022-11-18 12:52:50 +0000334 // Check that the cursor position is visible. Add columns for
335 // the smoothscroll marker "<<<" displayed in the top-left if
336 // needed.
Bram Moolenaar46b54742022-10-06 15:46:49 +0100337 getvvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
Yee Cheng Chin81ba26e2022-11-18 12:52:50 +0000338 int smoothscroll_overlap = smoothscroll_marker_overlap(
339 curwin_col_off() - curwin_col_off2());
340 if (curwin->w_skipcol + smoothscroll_overlap > vcol)
Bram Moolenaar46b54742022-10-06 15:46:49 +0100341 check_topline = TRUE;
342 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 }
344#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +0100345 // Check if there are more filler lines than allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 if (!check_topline && curwin->w_topfill > diff_check_fill(curwin,
347 curwin->w_topline))
348 check_topline = TRUE;
349#endif
350
351 if (check_topline)
352 {
353 halfheight = curwin->w_height / 2 - 1;
354 if (halfheight < 2)
355 halfheight = 2;
356
357#ifdef FEAT_FOLDING
358 if (hasAnyFolding(curwin))
359 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100360 // Count the number of logical lines between the cursor and
361 // topline + scrolloff (approximation of how much will be
362 // scrolled).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363 n = 0;
364 for (lnum = curwin->w_cursor.lnum;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100365 lnum < curwin->w_topline + *so_ptr; ++lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366 {
367 ++n;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100368 // stop at end of file or when we know we are far off
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369 if (lnum >= curbuf->b_ml.ml_line_count || n >= halfheight)
370 break;
371 (void)hasFolding(lnum, NULL, &lnum);
372 }
373 }
374 else
375#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +0100376 n = curwin->w_topline + *so_ptr - curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377
Bram Moolenaar85a20022019-12-21 18:25:54 +0100378 // If we weren't very close to begin with, we scroll to put the
379 // cursor in the middle of the window. Otherwise put the cursor
380 // near the top of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 if (n >= halfheight)
382 scroll_cursor_halfway(FALSE);
383 else
384 {
Bram Moolenaar1e015462005-09-25 22:16:38 +0000385 scroll_cursor_top(scrolljump_value(), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 check_botline = TRUE;
387 }
388 }
389
390 else
391 {
392#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100393 // Make sure topline is the first line of a fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
395#endif
396 check_botline = TRUE;
397 }
398 }
399
400 /*
401 * If the cursor is below the bottom of the window, scroll the window
402 * to put the cursor on the window.
403 * When w_botline is invalid, recompute it first, to avoid a redraw later.
404 * If w_botline was approximated, we might need a redraw later in a few
405 * cases, but we don't want to spend (a lot of) time recomputing w_botline
406 * for every small change.
407 */
408 if (check_botline)
409 {
410 if (!(curwin->w_valid & VALID_BOTLINE_AP))
411 validate_botline();
412
413 if (curwin->w_botline <= curbuf->b_ml.ml_line_count)
414 {
Bram Moolenaard4153d42008-11-15 15:06:17 +0000415 if (curwin->w_cursor.lnum < curwin->w_botline)
416 {
417 if (((long)curwin->w_cursor.lnum
Bram Moolenaar8088ae92022-06-20 11:38:17 +0100418 >= (long)curwin->w_botline - *so_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419#ifdef FEAT_FOLDING
420 || hasAnyFolding(curwin)
421#endif
422 ))
Bram Moolenaard4153d42008-11-15 15:06:17 +0000423 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 lineoff_T loff;
425
Bram Moolenaar85a20022019-12-21 18:25:54 +0100426 // Cursor is (a few lines) above botline, check if there are
427 // 'scrolloff' window lines below the cursor. If not, need to
428 // scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 n = curwin->w_empty_rows;
430 loff.lnum = curwin->w_cursor.lnum;
431#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100432 // In a fold go to its last line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 (void)hasFolding(loff.lnum, NULL, &loff.lnum);
434#endif
435#ifdef FEAT_DIFF
436 loff.fill = 0;
437 n += curwin->w_filler_rows;
438#endif
439 loff.height = 0;
440 while (loff.lnum < curwin->w_botline
441#ifdef FEAT_DIFF
442 && (loff.lnum + 1 < curwin->w_botline || loff.fill == 0)
443#endif
444 )
445 {
446 n += loff.height;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100447 if (n >= *so_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448 break;
449 botline_forw(&loff);
450 }
Bram Moolenaar375e3392019-01-31 18:26:10 +0100451 if (n >= *so_ptr)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100452 // sufficient context, no need to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 check_botline = FALSE;
Bram Moolenaard4153d42008-11-15 15:06:17 +0000454 }
455 else
Bram Moolenaar85a20022019-12-21 18:25:54 +0100456 // sufficient context, no need to scroll
Bram Moolenaard4153d42008-11-15 15:06:17 +0000457 check_botline = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 }
459 if (check_botline)
460 {
461#ifdef FEAT_FOLDING
462 if (hasAnyFolding(curwin))
463 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100464 // Count the number of logical lines between the cursor and
465 // botline - scrolloff (approximation of how much will be
466 // scrolled).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 line_count = 0;
468 for (lnum = curwin->w_cursor.lnum;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100469 lnum >= curwin->w_botline - *so_ptr; --lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 {
471 ++line_count;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100472 // stop at end of file or when we know we are far off
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 if (lnum <= 0 || line_count > curwin->w_height + 1)
474 break;
475 (void)hasFolding(lnum, &lnum, NULL);
476 }
477 }
478 else
479#endif
480 line_count = curwin->w_cursor.lnum - curwin->w_botline
Bram Moolenaar8088ae92022-06-20 11:38:17 +0100481 + 1 + *so_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 if (line_count <= curwin->w_height + 1)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000483 scroll_cursor_bot(scrolljump_value(), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 else
485 scroll_cursor_halfway(FALSE);
486 }
487 }
488 }
489 curwin->w_valid |= VALID_TOPLINE;
490
491 /*
492 * Need to redraw when topline changed.
493 */
494 if (curwin->w_topline != old_topline
495#ifdef FEAT_DIFF
496 || curwin->w_topfill != old_topfill
497#endif
498 )
499 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +0100500 dollar_vcol = -1;
Bram Moolenaarf32fb932022-11-17 11:34:38 +0000501 redraw_later(UPD_VALID);
502 reset_skipcol();
503
Bram Moolenaar85a20022019-12-21 18:25:54 +0100504 // May need to set w_skipcol when cursor in w_topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 if (curwin->w_cursor.lnum == curwin->w_topline)
506 validate_cursor();
507 }
508
Bram Moolenaar375e3392019-01-31 18:26:10 +0100509 *so_ptr = save_so;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510}
511
512/*
Bram Moolenaar1e015462005-09-25 22:16:38 +0000513 * Return the scrolljump value to use for the current window.
514 * When 'scrolljump' is positive use it as-is.
515 * When 'scrolljump' is negative use it as a percentage of the window height.
516 */
517 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100518scrolljump_value(void)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000519{
520 if (p_sj >= 0)
521 return (int)p_sj;
522 return (curwin->w_height * -p_sj) / 100;
523}
524
525/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 * Return TRUE when there are not 'scrolloff' lines above the cursor for the
527 * current window.
528 */
529 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100530check_top_offset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531{
532 lineoff_T loff;
533 int n;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +0100534 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535
Bram Moolenaar375e3392019-01-31 18:26:10 +0100536 if (curwin->w_cursor.lnum < curwin->w_topline + so
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537#ifdef FEAT_FOLDING
538 || hasAnyFolding(curwin)
539#endif
540 )
541 {
542 loff.lnum = curwin->w_cursor.lnum;
543#ifdef FEAT_DIFF
544 loff.fill = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100545 n = curwin->w_topfill; // always have this context
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546#else
547 n = 0;
548#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +0100549 // Count the visible screen lines above the cursor line.
Bram Moolenaar375e3392019-01-31 18:26:10 +0100550 while (n < so)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 {
552 topline_back(&loff);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100553 // Stop when included a line above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 if (loff.lnum < curwin->w_topline
555#ifdef FEAT_DIFF
556 || (loff.lnum == curwin->w_topline && loff.fill > 0)
557#endif
558 )
559 break;
560 n += loff.height;
561 }
Bram Moolenaar375e3392019-01-31 18:26:10 +0100562 if (n < so)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 return TRUE;
564 }
565 return FALSE;
566}
567
Bram Moolenaare24b4ab2022-09-16 20:51:14 +0100568/*
569 * Update w_curswant.
570 */
571 void
572update_curswant_force(void)
573{
574 validate_virtcol();
575 curwin->w_curswant = curwin->w_virtcol
576#ifdef FEAT_PROP_POPUP
577 - curwin->w_virtcol_first_char
578#endif
579 ;
580 curwin->w_set_curswant = FALSE;
581}
582
583/*
584 * Update w_curswant if w_set_curswant is set.
585 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100587update_curswant(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588{
589 if (curwin->w_set_curswant)
Bram Moolenaare24b4ab2022-09-16 20:51:14 +0100590 update_curswant_force();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591}
592
593/*
594 * Check if the cursor has moved. Set the w_valid flag accordingly.
595 */
596 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100597check_cursor_moved(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598{
599 if (wp->w_cursor.lnum != wp->w_valid_cursor.lnum)
600 {
601 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
Bram Moolenaara91cb982022-05-08 19:39:31 +0100602 |VALID_CHEIGHT|VALID_CROW|VALID_TOPLINE
603 |VALID_BOTLINE|VALID_BOTLINE_AP);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 wp->w_valid_cursor = wp->w_cursor;
605 wp->w_valid_leftcol = wp->w_leftcol;
Bram Moolenaar2fbabd22022-10-12 19:53:38 +0100606 wp->w_valid_skipcol = wp->w_skipcol;
607 }
608 else if (wp->w_skipcol != wp->w_valid_skipcol)
609 {
610 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
611 |VALID_CHEIGHT|VALID_CROW
612 |VALID_BOTLINE|VALID_BOTLINE_AP);
613 wp->w_valid_cursor = wp->w_cursor;
614 wp->w_valid_leftcol = wp->w_leftcol;
615 wp->w_valid_skipcol = wp->w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 }
617 else if (wp->w_cursor.col != wp->w_valid_cursor.col
618 || wp->w_leftcol != wp->w_valid_leftcol
Bram Moolenaar29ddebe2019-01-26 17:28:26 +0100619 || wp->w_cursor.coladd != wp->w_valid_cursor.coladd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620 {
621 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL);
622 wp->w_valid_cursor.col = wp->w_cursor.col;
623 wp->w_valid_leftcol = wp->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 wp->w_valid_cursor.coladd = wp->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 }
626}
627
628/*
629 * Call this function when some window settings have changed, which require
630 * the cursor position, botline and topline to be recomputed and the window to
631 * be redrawn. E.g, when changing the 'wrap' option or folding.
632 */
633 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100634changed_window_setting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635{
636 changed_window_setting_win(curwin);
637}
638
639 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100640changed_window_setting_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641{
642 wp->w_lines_valid = 0;
643 changed_line_abv_curs_win(wp);
644 wp->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP|VALID_TOPLINE);
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100645 redraw_win_later(wp, UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646}
647
648/*
Bram Moolenaar89469d12022-12-02 20:46:26 +0000649 * Call changed_window_setting_win() for every window containing "buf".
650 */
651 void
652changed_window_setting_buf(buf_T *buf)
653{
654 tabpage_T *tp;
655 win_T *wp;
656
657 FOR_ALL_TAB_WINDOWS(tp, wp)
658 if (wp->w_buffer == buf)
659 changed_window_setting_win(wp);
660}
661
662/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 * Set wp->w_topline to a certain number.
664 */
665 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100666set_topline(win_T *wp, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667{
Bram Moolenaar04626c22021-09-01 16:02:07 +0200668#ifdef FEAT_DIFF
669 linenr_T prev_topline = wp->w_topline;
670#endif
671
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100673 // go to first of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
675#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +0100676 // Approximate the value of w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 wp->w_botline += lnum - wp->w_topline;
Bram Moolenaar23999d72020-12-23 14:36:00 +0100678 if (wp->w_botline > wp->w_buffer->b_ml.ml_line_count + 1)
679 wp->w_botline = wp->w_buffer->b_ml.ml_line_count + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 wp->w_topline = lnum;
Bram Moolenaard4153d42008-11-15 15:06:17 +0000681 wp->w_topline_was_set = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682#ifdef FEAT_DIFF
Bram Moolenaar04626c22021-09-01 16:02:07 +0200683 if (lnum != prev_topline)
684 // Keep the filler lines when the topline didn't change.
685 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686#endif
687 wp->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_TOPLINE);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100688 // Don't set VALID_TOPLINE here, 'scrolloff' needs to be checked.
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100689 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690}
691
692/*
693 * Call this function when the length of the cursor line (in screen
694 * characters) has changed, and the change is before the cursor.
695 * Need to take care of w_botline separately!
696 */
697 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100698changed_cline_bef_curs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699{
700 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
701 |VALID_CHEIGHT|VALID_TOPLINE);
702}
703
704 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100705changed_cline_bef_curs_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706{
707 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
708 |VALID_CHEIGHT|VALID_TOPLINE);
709}
710
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711/*
712 * Call this function when the length of a line (in screen characters) above
713 * the cursor have changed.
714 * Need to take care of w_botline separately!
715 */
716 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100717changed_line_abv_curs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718{
719 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL|VALID_CROW
720 |VALID_CHEIGHT|VALID_TOPLINE);
721}
722
723 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100724changed_line_abv_curs_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725{
726 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL|VALID_CROW
727 |VALID_CHEIGHT|VALID_TOPLINE);
728}
729
730/*
Bram Moolenaar326c5d32022-08-12 13:05:49 +0100731 * Display of line has changed for "buf", invalidate cursor position and
732 * w_botline.
733 */
734 void
735changed_line_display_buf(buf_T *buf)
736{
737 win_T *wp;
738
739 FOR_ALL_WINDOWS(wp)
740 if (wp->w_buffer == buf)
741 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
742 |VALID_CROW|VALID_CHEIGHT
743 |VALID_TOPLINE|VALID_BOTLINE|VALID_BOTLINE_AP);
744}
745
746/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 * Make sure the value of curwin->w_botline is valid.
748 */
749 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100750validate_botline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751{
Bram Moolenaar23999d72020-12-23 14:36:00 +0100752 validate_botline_win(curwin);
753}
754
755/*
756 * Make sure the value of wp->w_botline is valid.
757 */
758 void
759validate_botline_win(win_T *wp)
760{
761 if (!(wp->w_valid & VALID_BOTLINE))
762 comp_botline(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763}
764
765/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 * Mark curwin->w_botline as invalid (because of some change in the buffer).
767 */
768 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100769invalidate_botline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770{
771 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
772}
773
774 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100775invalidate_botline_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776{
777 wp->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
778}
779
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100781approximate_botline_win(
782 win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783{
784 wp->w_valid &= ~VALID_BOTLINE;
785}
786
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787/*
788 * Return TRUE if curwin->w_wrow and curwin->w_wcol are valid.
789 */
790 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100791cursor_valid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792{
793 check_cursor_moved(curwin);
794 return ((curwin->w_valid & (VALID_WROW|VALID_WCOL)) ==
795 (VALID_WROW|VALID_WCOL));
796}
797
798/*
799 * Validate cursor position. Makes sure w_wrow and w_wcol are valid.
800 * w_topline must be valid, you may need to call update_topline() first!
801 */
802 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100803validate_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804{
Bram Moolenaard4566c12022-09-24 21:06:39 +0100805 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806 check_cursor_moved(curwin);
807 if ((curwin->w_valid & (VALID_WCOL|VALID_WROW)) != (VALID_WCOL|VALID_WROW))
808 curs_columns(TRUE);
809}
810
811#if defined(FEAT_GUI) || defined(PROTO)
812/*
813 * validate w_cline_row.
814 */
815 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100816validate_cline_row(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817{
818 /*
819 * First make sure that w_topline is valid (after moving the cursor).
820 */
821 update_topline();
822 check_cursor_moved(curwin);
823 if (!(curwin->w_valid & VALID_CROW))
Bram Moolenaar3f9be972014-12-13 21:09:57 +0100824 curs_rows(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825}
826#endif
827
828/*
829 * Compute wp->w_cline_row and wp->w_cline_height, based on the current value
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200830 * of wp->w_topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 */
832 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100833curs_rows(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834{
835 linenr_T lnum;
836 int i;
837 int all_invalid;
838 int valid;
839#ifdef FEAT_FOLDING
840 long fold_count;
841#endif
842
Bram Moolenaar85a20022019-12-21 18:25:54 +0100843 // Check if wp->w_lines[].wl_size is invalid
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 all_invalid = (!redrawing()
845 || wp->w_lines_valid == 0
846 || wp->w_lines[0].wl_lnum > wp->w_topline);
847 i = 0;
848 wp->w_cline_row = 0;
849 for (lnum = wp->w_topline; lnum < wp->w_cursor.lnum; ++i)
850 {
851 valid = FALSE;
852 if (!all_invalid && i < wp->w_lines_valid)
853 {
854 if (wp->w_lines[i].wl_lnum < lnum || !wp->w_lines[i].wl_valid)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100855 continue; // skip changed or deleted lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 if (wp->w_lines[i].wl_lnum == lnum)
857 {
858#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100859 // Check for newly inserted lines below this row, in which
860 // case we need to check for folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861 if (!wp->w_buffer->b_mod_set
862 || wp->w_lines[i].wl_lastlnum < wp->w_cursor.lnum
863 || wp->w_buffer->b_mod_top
864 > wp->w_lines[i].wl_lastlnum + 1)
865#endif
866 valid = TRUE;
867 }
868 else if (wp->w_lines[i].wl_lnum > lnum)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100869 --i; // hold at inserted lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 }
871 if (valid
872#ifdef FEAT_DIFF
873 && (lnum != wp->w_topline || !wp->w_p_diff)
874#endif
875 )
876 {
877#ifdef FEAT_FOLDING
878 lnum = wp->w_lines[i].wl_lastlnum + 1;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100879 // Cursor inside folded lines, don't count this row
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 if (lnum > wp->w_cursor.lnum)
881 break;
882#else
883 ++lnum;
884#endif
885 wp->w_cline_row += wp->w_lines[i].wl_size;
886 }
887 else
888 {
889#ifdef FEAT_FOLDING
890 fold_count = foldedCount(wp, lnum, NULL);
891 if (fold_count)
892 {
893 lnum += fold_count;
894 if (lnum > wp->w_cursor.lnum)
895 break;
896 ++wp->w_cline_row;
897 }
898 else
899#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100900 {
Bram Moolenaard5337ef2022-10-20 20:15:47 +0100901 wp->w_cline_row += plines_correct_topline(wp, lnum);
902 ++lnum;
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100903 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 }
905 }
906
907 check_cursor_moved(wp);
908 if (!(wp->w_valid & VALID_CHEIGHT))
909 {
910 if (all_invalid
911 || i == wp->w_lines_valid
912 || (i < wp->w_lines_valid
913 && (!wp->w_lines[i].wl_valid
914 || wp->w_lines[i].wl_lnum != wp->w_cursor.lnum)))
915 {
916#ifdef FEAT_DIFF
917 if (wp->w_cursor.lnum == wp->w_topline)
918 wp->w_cline_height = plines_win_nofill(wp, wp->w_cursor.lnum,
919 TRUE) + wp->w_topfill;
920 else
921#endif
922 wp->w_cline_height = plines_win(wp, wp->w_cursor.lnum, TRUE);
923#ifdef FEAT_FOLDING
924 wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
925 NULL, NULL, TRUE, NULL);
926#endif
927 }
928 else if (i > wp->w_lines_valid)
929 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100930 // a line that is too long to fit on the last screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 wp->w_cline_height = 0;
932#ifdef FEAT_FOLDING
933 wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
934 NULL, NULL, TRUE, NULL);
935#endif
936 }
937 else
938 {
939 wp->w_cline_height = wp->w_lines[i].wl_size;
940#ifdef FEAT_FOLDING
941 wp->w_cline_folded = wp->w_lines[i].wl_folded;
942#endif
943 }
944 }
945
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100946 redraw_for_cursorline(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 wp->w_valid |= VALID_CROW|VALID_CHEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948}
949
950/*
951 * Validate curwin->w_virtcol only.
952 */
953 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100954validate_virtcol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955{
956 validate_virtcol_win(curwin);
957}
958
959/*
960 * Validate wp->w_virtcol only.
961 */
962 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100963validate_virtcol_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964{
965 check_cursor_moved(wp);
966 if (!(wp->w_valid & VALID_VIRTCOL))
967 {
Bram Moolenaar04e0ed12022-09-10 20:00:56 +0100968#ifdef FEAT_PROP_POPUP
969 wp->w_virtcol_first_char = 0;
970#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 getvvcol(wp, &wp->w_cursor, NULL, &(wp->w_virtcol), NULL);
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000972#ifdef FEAT_SYN_HL
zeertzjq3e559cd2022-03-27 19:26:55 +0100973 redraw_for_cursorcolumn(wp);
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000974#endif
zeertzjq3e559cd2022-03-27 19:26:55 +0100975 wp->w_valid |= VALID_VIRTCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 }
977}
978
979/*
980 * Validate curwin->w_cline_height only.
981 */
Bram Moolenaar09dd2bb2019-12-14 18:42:15 +0100982 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100983validate_cheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984{
985 check_cursor_moved(curwin);
986 if (!(curwin->w_valid & VALID_CHEIGHT))
987 {
988#ifdef FEAT_DIFF
989 if (curwin->w_cursor.lnum == curwin->w_topline)
990 curwin->w_cline_height = plines_nofill(curwin->w_cursor.lnum)
991 + curwin->w_topfill;
992 else
993#endif
994 curwin->w_cline_height = plines(curwin->w_cursor.lnum);
995#ifdef FEAT_FOLDING
996 curwin->w_cline_folded = hasFolding(curwin->w_cursor.lnum, NULL, NULL);
997#endif
998 curwin->w_valid |= VALID_CHEIGHT;
999 }
1000}
1001
1002/*
Bram Moolenaarc236c162008-07-13 17:41:49 +00001003 * Validate w_wcol and w_virtcol only.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 */
1005 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001006validate_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007{
1008 colnr_T off;
1009 colnr_T col;
Bram Moolenaar6427c602010-02-03 17:43:07 +01001010 int width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011
1012 validate_virtcol();
1013 if (!(curwin->w_valid & VALID_WCOL))
1014 {
1015 col = curwin->w_virtcol;
1016 off = curwin_col_off();
1017 col += off;
Bram Moolenaar02631462017-09-22 15:20:32 +02001018 width = curwin->w_width - off + curwin_col_off2();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019
Bram Moolenaar85a20022019-12-21 18:25:54 +01001020 // long line wrapping, adjust curwin->w_wrow
Bram Moolenaarc236c162008-07-13 17:41:49 +00001021 if (curwin->w_p_wrap
Bram Moolenaar02631462017-09-22 15:20:32 +02001022 && col >= (colnr_T)curwin->w_width
Bram Moolenaar6427c602010-02-03 17:43:07 +01001023 && width > 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001024 // use same formula as what is used in curs_columns()
Bram Moolenaar02631462017-09-22 15:20:32 +02001025 col -= ((col - curwin->w_width) / width + 1) * width;
Bram Moolenaarc236c162008-07-13 17:41:49 +00001026 if (col > (int)curwin->w_leftcol)
1027 col -= curwin->w_leftcol;
1028 else
1029 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 curwin->w_wcol = col;
Bram Moolenaarc236c162008-07-13 17:41:49 +00001031
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 curwin->w_valid |= VALID_WCOL;
Bram Moolenaar4792a672020-11-15 21:11:18 +01001033#ifdef FEAT_PROP_POPUP
Bram Moolenaar6a076442020-11-15 20:32:58 +01001034 curwin->w_flags &= ~WFLAG_WCOL_OFF_ADDED;
Bram Moolenaar4792a672020-11-15 21:11:18 +01001035#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 }
1037}
1038
1039/*
Bram Moolenaar64486672010-05-16 15:46:46 +02001040 * Compute offset of a window, occupied by absolute or relative line number,
1041 * fold column and sign column (these don't move when scrolling horizontally).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 */
1043 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001044win_col_off(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045{
Bram Moolenaar64486672010-05-16 15:46:46 +02001046 return (((wp->w_p_nu || wp->w_p_rnu) ? number_width(wp) + 1 : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 + (cmdwin_type == 0 || wp != curwin ? 0 : 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048#ifdef FEAT_FOLDING
1049 + wp->w_p_fdc
1050#endif
1051#ifdef FEAT_SIGNS
Bram Moolenaar95ec9d62016-08-12 18:29:59 +02001052 + (signcolumn_on(wp) ? 2 : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053#endif
1054 );
1055}
1056
1057 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001058curwin_col_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059{
1060 return win_col_off(curwin);
1061}
1062
1063/*
1064 * Return the difference in column offset for the second screen line of a
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001065 * wrapped line. It's positive if 'number' or 'relativenumber' is on and 'n'
1066 * is in 'cpoptions'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 */
1068 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001069win_col_off2(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070{
Bram Moolenaar64486672010-05-16 15:46:46 +02001071 if ((wp->w_p_nu || wp->w_p_rnu) && vim_strchr(p_cpo, CPO_NUMCOL) != NULL)
Bram Moolenaar592e0a22004-07-03 16:05:59 +00001072 return number_width(wp) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 return 0;
1074}
1075
1076 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001077curwin_col_off2(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078{
1079 return win_col_off2(curwin);
1080}
1081
1082/*
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001083 * Compute curwin->w_wcol and curwin->w_virtcol.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 * Also updates curwin->w_wrow and curwin->w_cline_row.
1085 * Also updates curwin->w_leftcol.
1086 */
1087 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001088curs_columns(
Bram Moolenaar85a20022019-12-21 18:25:54 +01001089 int may_scroll) // when TRUE, may scroll horizontally
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090{
1091 int diff;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001092 int extra; // offset for first screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 int off_left, off_right;
1094 int n;
1095 int p_lines;
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001096 int width1; // text width for first screen line
1097 int width2 = 0; // text width for second and later screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 int new_leftcol;
1099 colnr_T startcol;
1100 colnr_T endcol;
1101 colnr_T prev_skipcol;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01001102 long so = get_scrolloff_value();
1103 long siso = get_sidescrolloff_value();
Bram Moolenaar4b6172e2022-10-13 20:23:28 +01001104 int did_sub_skipcol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105
1106 /*
1107 * First make sure that w_topline is valid (after moving the cursor).
1108 */
Luuk van Baal13ece2a2022-10-03 15:28:08 +01001109 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110
1111 /*
1112 * Next make sure that w_cline_row is valid.
1113 */
1114 if (!(curwin->w_valid & VALID_CROW))
Bram Moolenaar3f9be972014-12-13 21:09:57 +01001115 curs_rows(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001117#ifdef FEAT_PROP_POPUP
1118 // will be set by getvvcol() but not reset
1119 curwin->w_virtcol_first_char = 0;
1120#endif
1121
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 /*
1123 * Compute the number of virtual columns.
1124 */
1125#ifdef FEAT_FOLDING
1126 if (curwin->w_cline_folded)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001127 // In a folded line the cursor is always in the first column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 startcol = curwin->w_virtcol = endcol = curwin->w_leftcol;
1129 else
1130#endif
1131 getvvcol(curwin, &curwin->w_cursor,
1132 &startcol, &(curwin->w_virtcol), &endcol);
1133
Bram Moolenaar85a20022019-12-21 18:25:54 +01001134 // remove '$' from change command when cursor moves onto it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 if (startcol > dollar_vcol)
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001136 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137
1138 extra = curwin_col_off();
1139 curwin->w_wcol = curwin->w_virtcol + extra;
1140 endcol += extra;
1141
1142 /*
1143 * Now compute w_wrow, counting screen lines from w_cline_row.
1144 */
1145 curwin->w_wrow = curwin->w_cline_row;
1146
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001147 width1 = curwin->w_width - extra;
1148 if (width1 <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001150 // No room for text, put cursor in last char of window.
Bram Moolenaar30441bb2021-07-08 13:19:31 +02001151 // If not wrapping, the last non-empty line.
Bram Moolenaar02631462017-09-22 15:20:32 +02001152 curwin->w_wcol = curwin->w_width - 1;
Bram Moolenaar30441bb2021-07-08 13:19:31 +02001153 if (curwin->w_p_wrap)
1154 curwin->w_wrow = curwin->w_height - 1;
1155 else
1156 curwin->w_wrow = curwin->w_height - 1 - curwin->w_empty_rows;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02001158 else if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 {
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001160 width2 = width1 + curwin_col_off2();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161
Bram Moolenaar2fbabd22022-10-12 19:53:38 +01001162 // skip columns that are not visible
1163 if (curwin->w_cursor.lnum == curwin->w_topline
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001164 && curwin->w_skipcol > 0
Bram Moolenaar2fbabd22022-10-12 19:53:38 +01001165 && curwin->w_wcol >= curwin->w_skipcol)
Bram Moolenaar4b6172e2022-10-13 20:23:28 +01001166 {
Yee Cheng Chin01ee52b2022-11-17 12:41:42 +00001167 // Deduct by multiples of width2. This allows the long line
1168 // wrapping formula below to correctly calculate the w_wcol value
1169 // when wrapping.
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001170 if (curwin->w_skipcol <= width1)
Yee Cheng Chin01ee52b2022-11-17 12:41:42 +00001171 curwin->w_wcol -= width2;
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001172 else
Yee Cheng Chin01ee52b2022-11-17 12:41:42 +00001173 curwin->w_wcol -= width2
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001174 * (((curwin->w_skipcol - width1) / width2) + 1);
Yee Cheng Chin01ee52b2022-11-17 12:41:42 +00001175
Bram Moolenaar4b6172e2022-10-13 20:23:28 +01001176 did_sub_skipcol = TRUE;
1177 }
Bram Moolenaar2fbabd22022-10-12 19:53:38 +01001178
Bram Moolenaar85a20022019-12-21 18:25:54 +01001179 // long line wrapping, adjust curwin->w_wrow
Bram Moolenaar02631462017-09-22 15:20:32 +02001180 if (curwin->w_wcol >= curwin->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001182 // this same formula is used in validate_cursor_col()
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001183 n = (curwin->w_wcol - curwin->w_width) / width2 + 1;
1184 curwin->w_wcol -= n * width2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 curwin->w_wrow += n;
1186
1187#ifdef FEAT_LINEBREAK
Bram Moolenaar85a20022019-12-21 18:25:54 +01001188 // When cursor wraps to first char of next line in Insert
1189 // mode, the 'showbreak' string isn't shown, backup to first
1190 // column
Bram Moolenaar4b6172e2022-10-13 20:23:28 +01001191 char_u *sbr = get_showbreak_value(curwin);
Bram Moolenaaree857022019-11-09 23:26:40 +01001192 if (*sbr && *ml_get_cursor() == NUL
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +01001193 && curwin->w_wcol == vim_strsize(sbr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 curwin->w_wcol = 0;
1195#endif
1196 }
1197 }
1198
Bram Moolenaar85a20022019-12-21 18:25:54 +01001199 // No line wrapping: compute curwin->w_leftcol if scrolling is on and line
1200 // is not folded.
1201 // If scrolling is off, curwin->w_leftcol is assumed to be 0
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001202 else if (may_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203#ifdef FEAT_FOLDING
1204 && !curwin->w_cline_folded
1205#endif
1206 )
1207 {
Bram Moolenaarc9dc03f2022-09-12 17:51:07 +01001208#ifdef FEAT_PROP_POPUP
1209 if (curwin->w_virtcol_first_char > 0)
1210 {
1211 int cols = (curwin->w_width - extra);
1212 int rows = cols > 0 ? curwin->w_virtcol_first_char / cols : 1;
1213
1214 // each "above" text prop shifts the text one row down
1215 curwin->w_wrow += rows;
1216 curwin->w_wcol -= rows * cols;
1217 endcol -= rows * cols;
1218 curwin->w_cline_height = rows + 1;
1219 }
1220#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 /*
1222 * If Cursor is left of the screen, scroll rightwards.
1223 * If Cursor is right of the screen, scroll leftwards
1224 * If we get closer to the edge than 'sidescrolloff', scroll a little
1225 * extra
1226 */
Bram Moolenaar375e3392019-01-31 18:26:10 +01001227 off_left = (int)startcol - (int)curwin->w_leftcol - siso;
Bram Moolenaar02631462017-09-22 15:20:32 +02001228 off_right = (int)endcol - (int)(curwin->w_leftcol + curwin->w_width
Bram Moolenaar375e3392019-01-31 18:26:10 +01001229 - siso) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 if (off_left < 0 || off_right > 0)
1231 {
1232 if (off_left < 0)
1233 diff = -off_left;
1234 else
1235 diff = off_right;
1236
Bram Moolenaar85a20022019-12-21 18:25:54 +01001237 // When far off or not enough room on either side, put cursor in
1238 // middle of window.
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001239 if (p_ss == 0 || diff >= width1 / 2 || off_right >= off_left)
1240 new_leftcol = curwin->w_wcol - extra - width1 / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 else
1242 {
1243 if (diff < p_ss)
1244 diff = p_ss;
1245 if (off_left < 0)
1246 new_leftcol = curwin->w_leftcol - diff;
1247 else
1248 new_leftcol = curwin->w_leftcol + diff;
1249 }
1250 if (new_leftcol < 0)
1251 new_leftcol = 0;
1252 if (new_leftcol != (int)curwin->w_leftcol)
1253 {
1254 curwin->w_leftcol = new_leftcol;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001255 // screen has to be redrawn with new curwin->w_leftcol
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001256 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 }
1258 }
1259 curwin->w_wcol -= curwin->w_leftcol;
1260 }
1261 else if (curwin->w_wcol > (int)curwin->w_leftcol)
1262 curwin->w_wcol -= curwin->w_leftcol;
1263 else
1264 curwin->w_wcol = 0;
1265
1266#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01001267 // Skip over filler lines. At the top use w_topfill, there
1268 // may be some filler lines above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269 if (curwin->w_cursor.lnum == curwin->w_topline)
1270 curwin->w_wrow += curwin->w_topfill;
1271 else
1272 curwin->w_wrow += diff_check_fill(curwin, curwin->w_cursor.lnum);
1273#endif
1274
1275 prev_skipcol = curwin->w_skipcol;
1276
1277 p_lines = 0;
Bram Moolenaar375e3392019-01-31 18:26:10 +01001278
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 if ((curwin->w_wrow >= curwin->w_height
1280 || ((prev_skipcol > 0
Bram Moolenaar375e3392019-01-31 18:26:10 +01001281 || curwin->w_wrow + so >= curwin->w_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 && (p_lines =
1283#ifdef FEAT_DIFF
1284 plines_win_nofill
1285#else
1286 plines_win
1287#endif
1288 (curwin, curwin->w_cursor.lnum, FALSE))
1289 - 1 >= curwin->w_height))
1290 && curwin->w_height != 0
1291 && curwin->w_cursor.lnum == curwin->w_topline
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001292 && width2 > 0
Bram Moolenaar4033c552017-09-16 20:54:51 +02001293 && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001295 // Cursor past end of screen. Happens with a single line that does
1296 // not fit on screen. Find a skipcol to show the text around the
1297 // cursor. Avoid scrolling all the time. compute value of "extra":
1298 // 1: Less than 'scrolloff' lines above
1299 // 2: Less than 'scrolloff' lines below
1300 // 3: both of them
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 extra = 0;
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001302 if (curwin->w_skipcol + so * width2 > curwin->w_virtcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 extra = 1;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001304 // Compute last display line of the buffer line that we want at the
1305 // bottom of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 if (p_lines == 0)
1307 p_lines = plines_win(curwin, curwin->w_cursor.lnum, FALSE);
1308 --p_lines;
Bram Moolenaar375e3392019-01-31 18:26:10 +01001309 if (p_lines > curwin->w_wrow + so)
1310 n = curwin->w_wrow + so;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 else
1312 n = p_lines;
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001313 if ((colnr_T)n >= curwin->w_height + curwin->w_skipcol / width2 - so)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 extra += 2;
1315
Bram Moolenaar4b6172e2022-10-13 20:23:28 +01001316 if (extra == 3 || curwin->w_height <= so * 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001318 // not enough room for 'scrolloff', put cursor in the middle
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001319 n = curwin->w_virtcol / width2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 if (n > curwin->w_height / 2)
1321 n -= curwin->w_height / 2;
1322 else
1323 n = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001324 // don't skip more than necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 if (n > p_lines - curwin->w_height + 1)
1326 n = p_lines - curwin->w_height + 1;
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001327 curwin->w_skipcol = n * width2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 }
1329 else if (extra == 1)
1330 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001331 // less than 'scrolloff' lines above, decrease skipcol
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001332 extra = (curwin->w_skipcol + so * width2 - curwin->w_virtcol
1333 + width2 - 1) / width2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 if (extra > 0)
1335 {
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001336 if ((colnr_T)(extra * width2) > curwin->w_skipcol)
1337 extra = curwin->w_skipcol / width2;
1338 curwin->w_skipcol -= extra * width2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 }
1340 }
1341 else if (extra == 2)
1342 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001343 // less than 'scrolloff' lines below, increase skipcol
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001344 endcol = (n - curwin->w_height + 1) * width2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 while (endcol > curwin->w_virtcol)
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001346 endcol -= width2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 if (endcol > curwin->w_skipcol)
1348 curwin->w_skipcol = endcol;
1349 }
1350
Bram Moolenaar4b6172e2022-10-13 20:23:28 +01001351 // adjust w_wrow for the changed w_skipcol
1352 if (did_sub_skipcol)
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001353 curwin->w_wrow -= (curwin->w_skipcol - prev_skipcol) / width2;
Bram Moolenaar4b6172e2022-10-13 20:23:28 +01001354 else
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001355 curwin->w_wrow -= curwin->w_skipcol / width2;
Bram Moolenaar4b6172e2022-10-13 20:23:28 +01001356
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 if (curwin->w_wrow >= curwin->w_height)
1358 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001359 // small window, make sure cursor is in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 extra = curwin->w_wrow - curwin->w_height + 1;
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001361 curwin->w_skipcol += extra * width2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 curwin->w_wrow -= extra;
1363 }
1364
Bram Moolenaar856c5d22022-10-13 21:54:28 +01001365 extra = ((int)prev_skipcol - (int)curwin->w_skipcol) / width2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 if (extra > 0)
1367 win_ins_lines(curwin, 0, extra, FALSE, FALSE);
1368 else if (extra < 0)
Bram Moolenaarcfce7172017-08-17 20:31:48 +02001369 win_del_lines(curwin, 0, -extra, FALSE, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 }
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001371 else if (!curwin->w_p_sms)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 curwin->w_skipcol = 0;
1373 if (prev_skipcol != curwin->w_skipcol)
Bram Moolenaarf32fb932022-11-17 11:34:38 +00001374 redraw_later(UPD_SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001376#ifdef FEAT_SYN_HL
zeertzjq3e559cd2022-03-27 19:26:55 +01001377 redraw_for_cursorcolumn(curwin);
Bram Moolenaarb6798752014-03-27 12:11:48 +01001378#endif
Bram Moolenaare52e0c82020-02-28 22:20:10 +01001379#if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
1380 if (popup_is_popup(curwin) && curbuf->b_term != NULL)
1381 {
1382 curwin->w_wrow += popup_top_extra(curwin);
1383 curwin->w_wcol += popup_left_extra(curwin);
Bram Moolenaar6a076442020-11-15 20:32:58 +01001384 curwin->w_flags |= WFLAG_WCOL_OFF_ADDED + WFLAG_WROW_OFF_ADDED;
Bram Moolenaare52e0c82020-02-28 22:20:10 +01001385 }
Bram Moolenaar6a076442020-11-15 20:32:58 +01001386 else
1387 curwin->w_flags &= ~(WFLAG_WCOL_OFF_ADDED + WFLAG_WROW_OFF_ADDED);
Bram Moolenaare52e0c82020-02-28 22:20:10 +01001388#endif
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001389
Bram Moolenaar2fbabd22022-10-12 19:53:38 +01001390 // now w_leftcol and w_skipcol are valid, avoid check_cursor_moved()
1391 // thinking otherwise
Bram Moolenaar08f23632019-11-16 14:19:33 +01001392 curwin->w_valid_leftcol = curwin->w_leftcol;
Bram Moolenaar2fbabd22022-10-12 19:53:38 +01001393 curwin->w_valid_skipcol = curwin->w_skipcol;
Bram Moolenaar08f23632019-11-16 14:19:33 +01001394
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 curwin->w_valid |= VALID_WCOL|VALID_WROW|VALID_VIRTCOL;
1396}
1397
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001398#if (defined(FEAT_EVAL) || defined(FEAT_PROP_POPUP)) || defined(PROTO)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001399/*
1400 * Compute the screen position of text character at "pos" in window "wp"
1401 * The resulting values are one-based, zero when character is not visible.
1402 */
Bram Moolenaar12034e22019-08-25 22:25:02 +02001403 void
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001404textpos2screenpos(
1405 win_T *wp,
1406 pos_T *pos,
1407 int *rowp, // screen row
1408 int *scolp, // start screen column
1409 int *ccolp, // cursor screen column
1410 int *ecolp) // end screen column
1411{
1412 colnr_T scol = 0, ccol = 0, ecol = 0;
1413 int row = 0;
1414 int rowoff = 0;
1415 colnr_T coloff = 0;
1416
Bram Moolenaar189663b2021-07-21 18:04:56 +02001417 if (pos->lnum >= wp->w_topline && pos->lnum <= wp->w_botline)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001418 {
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001419 colnr_T off;
1420 colnr_T col;
1421 int width;
1422 linenr_T lnum = pos->lnum;
1423#ifdef FEAT_FOLDING
1424 int is_folded;
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001425
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001426 is_folded = hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
1427#endif
1428 row = plines_m_win(wp, wp->w_topline, lnum - 1) + 1;
Bram Moolenaar1cb16c32022-12-05 22:26:44 +00001429
1430#ifdef FEAT_DIFF
1431 // Add filler lines above this buffer line.
1432 row += diff_check_fill(wp, lnum);
1433#endif
1434
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001435#ifdef FEAT_FOLDING
1436 if (is_folded)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001437 {
Bram Moolenaar7924a172022-01-24 16:15:15 +00001438 row += W_WINROW(wp);
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001439 coloff = wp->w_wincol + 1;
Bram Moolenaar7924a172022-01-24 16:15:15 +00001440 }
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001441 else
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001442#endif
1443 {
1444 getvcol(wp, pos, &scol, &ccol, &ecol);
1445
1446 // similar to what is done in validate_cursor_col()
1447 col = scol;
1448 off = win_col_off(wp);
1449 col += off;
1450 width = wp->w_width - off + win_col_off2(wp);
1451
1452 // long line wrapping, adjust row
1453 if (wp->w_p_wrap
1454 && col >= (colnr_T)wp->w_width
1455 && width > 0)
1456 {
1457 // use same formula as what is used in curs_columns()
1458 rowoff = ((col - wp->w_width) / width + 1);
1459 col -= rowoff * width;
1460 }
1461 col -= wp->w_leftcol;
1462 if (col >= wp->w_width)
1463 col = -1;
1464 if (col >= 0 && row + rowoff <= wp->w_height)
1465 {
1466 coloff = col - scol + wp->w_wincol + 1;
1467 row += W_WINROW(wp);
1468 }
1469 else
1470 // character is left, right or below of the window
1471 row = rowoff = scol = ccol = ecol = 0;
1472 }
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001473 }
Bram Moolenaar7924a172022-01-24 16:15:15 +00001474 *rowp = row + rowoff;
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001475 *scolp = scol + coloff;
1476 *ccolp = ccol + coloff;
1477 *ecolp = ecol + coloff;
1478}
Bram Moolenaar12034e22019-08-25 22:25:02 +02001479#endif
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001480
Bram Moolenaar12034e22019-08-25 22:25:02 +02001481#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001482/*
1483 * "screenpos({winid}, {lnum}, {col})" function
1484 */
1485 void
1486f_screenpos(typval_T *argvars UNUSED, typval_T *rettv)
1487{
1488 dict_T *dict;
1489 win_T *wp;
1490 pos_T pos;
1491 int row = 0;
1492 int scol = 0, ccol = 0, ecol = 0;
1493
Bram Moolenaar93a10962022-06-16 11:42:09 +01001494 if (rettv_dict_alloc(rettv) == FAIL)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001495 return;
1496 dict = rettv->vval.v_dict;
1497
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02001498 if (in_vim9script()
1499 && (check_for_number_arg(argvars, 0) == FAIL
1500 || check_for_number_arg(argvars, 1) == FAIL
1501 || check_for_number_arg(argvars, 2) == FAIL))
1502 return;
1503
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001504 wp = find_win_by_nr_or_id(&argvars[0]);
1505 if (wp == NULL)
1506 return;
1507
1508 pos.lnum = tv_get_number(&argvars[1]);
Bram Moolenaar99d19432022-12-05 16:23:24 +00001509 if (pos.lnum > wp->w_buffer->b_ml.ml_line_count)
1510 {
1511 semsg(_(e_invalid_line_number_nr), pos.lnum);
1512 return;
1513 }
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001514 pos.col = tv_get_number(&argvars[2]) - 1;
1515 pos.coladd = 0;
1516 textpos2screenpos(wp, &pos, &row, &scol, &ccol, &ecol);
1517
1518 dict_add_number(dict, "row", row);
1519 dict_add_number(dict, "col", scol);
1520 dict_add_number(dict, "curscol", ccol);
1521 dict_add_number(dict, "endcol", ecol);
1522}
Bram Moolenaar5a6ec102022-05-27 21:58:00 +01001523
1524/*
1525 * "virtcol2col({winid}, {lnum}, {col})" function
1526 */
1527 void
1528f_virtcol2col(typval_T *argvars UNUSED, typval_T *rettv)
1529{
1530 win_T *wp;
1531 linenr_T lnum;
1532 int screencol;
1533 int error = FALSE;
1534
1535 rettv->vval.v_number = -1;
1536
1537 if (check_for_number_arg(argvars, 0) == FAIL
1538 || check_for_number_arg(argvars, 1) == FAIL
1539 || check_for_number_arg(argvars, 2) == FAIL)
1540 return;
1541
1542 wp = find_win_by_nr_or_id(&argvars[0]);
1543 if (wp == NULL)
1544 return;
1545
1546 lnum = tv_get_number_chk(&argvars[1], &error);
1547 if (error || lnum < 0 || lnum > wp->w_buffer->b_ml.ml_line_count)
1548 return;
1549
1550 screencol = tv_get_number_chk(&argvars[2], &error);
1551 if (error || screencol < 0)
1552 return;
1553
1554 rettv->vval.v_number = vcol2col(wp, lnum, screencol);
1555}
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001556#endif
1557
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558/*
1559 * Scroll the current window down by "line_count" logical lines. "CTRL-Y"
1560 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001562scrolldown(
1563 long line_count,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001564 int byfold UNUSED) // TRUE: count a closed fold as one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565{
Bram Moolenaar85a20022019-12-21 18:25:54 +01001566 long done = 0; // total # of physical lines done
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 int wrow;
1568 int moved = FALSE;
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001569 int do_sms = curwin->w_p_wrap && curwin->w_p_sms;
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001570 int width1 = 0;
1571 int width2 = 0;
1572
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001573 if (do_sms)
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001574 {
1575 width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001576 width2 = width1 + curwin_col_off2();
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001577 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578
1579#ifdef FEAT_FOLDING
1580 linenr_T first;
1581
Bram Moolenaar85a20022019-12-21 18:25:54 +01001582 // Make sure w_topline is at the first of a sequence of folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1584#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +01001585 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001586 for (int todo = line_count; todo > 0; --todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 {
1588#ifdef FEAT_DIFF
Bram Moolenaarfa316dd2009-11-03 15:23:14 +00001589 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)
1590 && curwin->w_topfill < curwin->w_height - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 {
1592 ++curwin->w_topfill;
1593 ++done;
1594 }
1595 else
1596#endif
1597 {
Bram Moolenaar8df97482022-10-03 12:11:13 +01001598 // break when at the very top
1599 if (curwin->w_topline == 1
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001600 && (!do_sms || curwin->w_skipcol < width1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 break;
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001602 if (do_sms && curwin->w_skipcol >= width1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 {
Bram Moolenaar8df97482022-10-03 12:11:13 +01001604 // scroll a screen line down
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001605 if (curwin->w_skipcol >= width1 + width2)
1606 curwin->w_skipcol -= width2;
1607 else
1608 curwin->w_skipcol -= width1;
1609 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 ++done;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 }
1612 else
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001613 {
Bram Moolenaar8df97482022-10-03 12:11:13 +01001614 // scroll a text line down
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001615 --curwin->w_topline;
1616 curwin->w_skipcol = 0;
1617#ifdef FEAT_DIFF
1618 curwin->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001620#ifdef FEAT_FOLDING
1621 // A sequence of folded lines only counts for one logical line
1622 if (hasFolding(curwin->w_topline, &first, NULL))
1623 {
1624 ++done;
1625 if (!byfold)
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001626 todo -= curwin->w_topline - first - 1;
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001627 curwin->w_botline -= curwin->w_topline - first;
1628 curwin->w_topline = first;
1629 }
1630 else
1631#endif
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001632 if (do_sms)
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001633 {
1634 int size = win_linetabsize(curwin, curwin->w_topline,
1635 ml_get(curwin->w_topline), (colnr_T)MAXCOL);
1636 if (size > width1)
1637 {
1638 curwin->w_skipcol = width1;
1639 size -= width1;
1640 redraw_later(UPD_NOT_VALID);
1641 }
1642 while (size > width2)
1643 {
1644 curwin->w_skipcol += width2;
1645 size -= width2;
1646 }
1647 ++done;
1648 }
1649 else
1650 done += PLINES_NOFILL(curwin->w_topline);
1651 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001653 --curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 invalidate_botline();
1655 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001656 curwin->w_wrow += done; // keep w_wrow updated
1657 curwin->w_cline_row += done; // keep w_cline_row updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658
1659#ifdef FEAT_DIFF
1660 if (curwin->w_cursor.lnum == curwin->w_topline)
1661 curwin->w_cline_row = 0;
1662 check_topfill(curwin, TRUE);
1663#endif
1664
1665 /*
1666 * Compute the row number of the last row of the cursor line
1667 * and move the cursor onto the displayed part of the window.
1668 */
1669 wrow = curwin->w_wrow;
Bram Moolenaar4033c552017-09-16 20:54:51 +02001670 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 {
1672 validate_virtcol();
1673 validate_cheight();
1674 wrow += curwin->w_cline_height - 1 -
Bram Moolenaar02631462017-09-22 15:20:32 +02001675 curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 }
1677 while (wrow >= curwin->w_height && curwin->w_cursor.lnum > 1)
1678 {
1679#ifdef FEAT_FOLDING
1680 if (hasFolding(curwin->w_cursor.lnum, &first, NULL))
1681 {
1682 --wrow;
1683 if (first == 1)
1684 curwin->w_cursor.lnum = 1;
1685 else
1686 curwin->w_cursor.lnum = first - 1;
1687 }
1688 else
1689#endif
1690 wrow -= plines(curwin->w_cursor.lnum--);
1691 curwin->w_valid &=
1692 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1693 moved = TRUE;
1694 }
1695 if (moved)
1696 {
1697#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01001698 // Move cursor to first line of closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 foldAdjustCursor();
1700#endif
1701 coladvance(curwin->w_curswant);
1702 }
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001703
1704 if (curwin->w_cursor.lnum == curwin->w_topline && do_sms)
1705 {
Bram Moolenaarc9121f72022-10-14 20:09:04 +01001706 long so = get_scrolloff_value();
Bram Moolenaar118c2352022-10-09 17:19:27 +01001707 int scrolloff_cols = so == 0 ? 0 : width1 + (so - 1) * width2;
1708
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001709 // make sure the cursor is in the visible text
1710 validate_virtcol();
Bram Moolenaar118c2352022-10-09 17:19:27 +01001711 int col = curwin->w_virtcol - curwin->w_skipcol + scrolloff_cols;
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001712 int row = 0;
1713 if (col >= width1)
1714 {
1715 col -= width1;
1716 ++row;
1717 }
1718 if (col > width2)
1719 {
1720 row += col / width2;
1721 col = col % width2;
1722 }
1723 if (row >= curwin->w_height)
Bram Moolenaar118c2352022-10-09 17:19:27 +01001724 {
1725 curwin->w_curswant = curwin->w_virtcol
1726 - (row - curwin->w_height + 1) * width2;
1727 coladvance(curwin->w_curswant);
1728 }
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001729 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730}
1731
1732/*
Bram Moolenaard5337ef2022-10-20 20:15:47 +01001733 * Return TRUE if scrollup() will scroll by screen line rather than text line.
1734 */
1735 static int
1736scrolling_screenlines(int byfold UNUSED)
1737{
1738 return (curwin->w_p_wrap && curwin->w_p_sms)
1739# ifdef FEAT_FOLDING
1740 || (byfold && hasAnyFolding(curwin))
1741# endif
1742# ifdef FEAT_DIFF
1743 || curwin->w_p_diff
1744# endif
1745 ;
1746}
1747
1748/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 * Scroll the current window up by "line_count" logical lines. "CTRL-E"
1750 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001752scrollup(
1753 long line_count,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001754 int byfold UNUSED) // TRUE: count a closed fold as one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755{
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001756 int do_sms = curwin->w_p_wrap && curwin->w_p_sms;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757
Bram Moolenaard5337ef2022-10-20 20:15:47 +01001758 if (scrolling_screenlines(byfold))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 {
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001760 int width1 = curwin->w_width - curwin_col_off();
1761 int width2 = width1 + curwin_col_off2();
1762 int size = 0;
1763 linenr_T prev_topline = curwin->w_topline;
1764
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001765 if (do_sms)
Bram Moolenaarc9121f72022-10-14 20:09:04 +01001766 size = linetabsize(curwin, curwin->w_topline);
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001767
1768 // diff mode: first consume "topfill"
1769 // 'smoothscroll': increase "w_skipcol" until it goes over the end of
1770 // the line, then advance to the next line.
1771 // folding: count each sequence of folded lines as one logical line.
1772 for (int todo = line_count; todo > 0; --todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 {
1774# ifdef FEAT_DIFF
1775 if (curwin->w_topfill > 0)
1776 --curwin->w_topfill;
1777 else
1778# endif
1779 {
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001780 linenr_T lnum = curwin->w_topline;
1781
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782# ifdef FEAT_FOLDING
1783 if (byfold)
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001784 // for a closed fold: go to the last line in the fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 (void)hasFolding(lnum, NULL, &lnum);
1786# endif
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001787 if (lnum == curwin->w_topline && do_sms)
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001788 {
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001789 // 'smoothscroll': increase "w_skipcol" until it goes over
1790 // the end of the line, then advance to the next line.
1791 int add = curwin->w_skipcol > 0 ? width2 : width1;
1792 curwin->w_skipcol += add;
1793 if (curwin->w_skipcol >= size)
1794 {
1795 if (lnum == curbuf->b_ml.ml_line_count)
1796 {
1797 // at the last screen line, can't scroll further
1798 curwin->w_skipcol -= add;
1799 break;
1800 }
1801 ++lnum;
1802 }
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001803 }
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001804 else
1805 {
1806 if (lnum >= curbuf->b_ml.ml_line_count)
1807 break;
1808 ++lnum;
1809 }
1810
1811 if (lnum > curwin->w_topline)
1812 {
1813 // approximate w_botline
1814 curwin->w_botline += lnum - curwin->w_topline;
1815 curwin->w_topline = lnum;
1816# ifdef FEAT_DIFF
1817 curwin->w_topfill = diff_check_fill(curwin, lnum);
1818# endif
1819 curwin->w_skipcol = 0;
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001820 if (todo > 1 && do_sms)
Bram Moolenaarc9121f72022-10-14 20:09:04 +01001821 size = linetabsize(curwin, curwin->w_topline);
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001822 }
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001823 }
1824 }
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001825
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001826 if (curwin->w_topline == prev_topline)
1827 // need to redraw even though w_topline didn't change
1828 redraw_later(UPD_NOT_VALID);
1829 }
1830 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 {
1832 curwin->w_topline += line_count;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001833 curwin->w_botline += line_count; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 }
1835
1836 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
1837 curwin->w_topline = curbuf->b_ml.ml_line_count;
1838 if (curwin->w_botline > curbuf->b_ml.ml_line_count + 1)
1839 curwin->w_botline = curbuf->b_ml.ml_line_count + 1;
1840
1841#ifdef FEAT_DIFF
1842 check_topfill(curwin, FALSE);
1843#endif
1844
1845#ifdef FEAT_FOLDING
1846 if (hasAnyFolding(curwin))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001847 // Make sure w_topline is at the first of a sequence of folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1849#endif
1850
1851 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1852 if (curwin->w_cursor.lnum < curwin->w_topline)
1853 {
1854 curwin->w_cursor.lnum = curwin->w_topline;
1855 curwin->w_valid &=
1856 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1857 coladvance(curwin->w_curswant);
1858 }
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001859 if (curwin->w_cursor.lnum == curwin->w_topline
1860 && do_sms && curwin->w_skipcol > 0)
1861 {
Yee Cheng Chin81ba26e2022-11-18 12:52:50 +00001862 int col_off = curwin_col_off();
1863 int col_off2 = curwin_col_off2();
1864
1865 int width1 = curwin->w_width - col_off;
1866 int width2 = width1 + col_off2;
1867 int extra2 = col_off - col_off2;
Bram Moolenaarc9121f72022-10-14 20:09:04 +01001868 long so = get_scrolloff_value();
Bram Moolenaar118c2352022-10-09 17:19:27 +01001869 int scrolloff_cols = so == 0 ? 0 : width1 + (so - 1) * width2;
Bram Moolenaarc9121f72022-10-14 20:09:04 +01001870 int space_cols = (curwin->w_height - 1) * width2;
Bram Moolenaar118c2352022-10-09 17:19:27 +01001871
Yee Cheng Chin81ba26e2022-11-18 12:52:50 +00001872 // If we have non-zero scrolloff, just ignore the <<< marker as we are
1873 // going past it anyway.
1874 int smoothscroll_overlap = scrolloff_cols != 0 ? 0 :
1875 smoothscroll_marker_overlap(extra2);
1876
Bram Moolenaar118c2352022-10-09 17:19:27 +01001877 // Make sure the cursor is in a visible part of the line, taking
1878 // 'scrolloff' into account, but using screen lines.
Bram Moolenaarc9121f72022-10-14 20:09:04 +01001879 // If there are not enough screen lines put the cursor in the middle.
1880 if (scrolloff_cols > space_cols / 2)
1881 scrolloff_cols = space_cols / 2;
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001882 validate_virtcol();
Yee Cheng Chin81ba26e2022-11-18 12:52:50 +00001883 if (curwin->w_virtcol < curwin->w_skipcol
1884 + smoothscroll_overlap + scrolloff_cols)
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001885 {
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001886 colnr_T col = curwin->w_virtcol;
1887
1888 if (col < width1)
1889 col += width1;
Yee Cheng Chin81ba26e2022-11-18 12:52:50 +00001890 while (col < curwin->w_skipcol
1891 + smoothscroll_overlap + scrolloff_cols)
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001892 col += width2;
Bram Moolenaar118c2352022-10-09 17:19:27 +01001893 curwin->w_curswant = col;
1894 coladvance(curwin->w_curswant);
Bram Moolenaar2fbabd22022-10-12 19:53:38 +01001895
1896 // validate_virtcol() marked various things as valid, but after
1897 // moving the cursor they need to be recomputed
1898 curwin->w_valid &=
1899 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001900 }
1901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902}
1903
Bram Moolenaar2fbabd22022-10-12 19:53:38 +01001904/*
1905 * Called after changing the cursor column: make sure that curwin->w_skipcol is
1906 * valid for 'smoothscroll'.
1907 */
1908 void
1909adjust_skipcol(void)
1910{
1911 if (!curwin->w_p_wrap
1912 || !curwin->w_p_sms
1913 || curwin->w_cursor.lnum != curwin->w_topline)
1914 return;
1915
1916 int width1 = curwin->w_width - curwin_col_off();
1917 int width2 = width1 + curwin_col_off2();
Bram Moolenaarc9121f72022-10-14 20:09:04 +01001918 long so = get_scrolloff_value();
Bram Moolenaar2fbabd22022-10-12 19:53:38 +01001919 int scrolloff_cols = so == 0 ? 0 : width1 + (so - 1) * width2;
1920 int scrolled = FALSE;
1921
Bram Moolenaard5337ef2022-10-20 20:15:47 +01001922 validate_cheight();
Bram Moolenaarb21b8e92022-12-03 18:35:07 +00001923 if (curwin->w_cline_height == curwin->w_height
1924 // w_cline_height may be capped at w_height, check there aren't
1925 // actually more lines.
1926 && plines_win(curwin, curwin->w_cursor.lnum, FALSE)
1927 <= curwin->w_height)
Bram Moolenaarc9121f72022-10-14 20:09:04 +01001928 {
1929 // the line just fits in the window, don't scroll
Bram Moolenaarf32fb932022-11-17 11:34:38 +00001930 reset_skipcol();
Bram Moolenaarc9121f72022-10-14 20:09:04 +01001931 return;
1932 }
1933
Bram Moolenaard5337ef2022-10-20 20:15:47 +01001934 validate_virtcol();
Bram Moolenaar2fbabd22022-10-12 19:53:38 +01001935 while (curwin->w_skipcol > 0
1936 && curwin->w_virtcol < curwin->w_skipcol + 3 + scrolloff_cols)
1937 {
1938 // scroll a screen line down
1939 if (curwin->w_skipcol >= width1 + width2)
1940 curwin->w_skipcol -= width2;
1941 else
1942 curwin->w_skipcol -= width1;
1943 redraw_later(UPD_NOT_VALID);
1944 scrolled = TRUE;
1945 validate_virtcol();
1946 }
1947 if (scrolled)
1948 return; // don't scroll in the other direction now
1949
1950 int col = curwin->w_virtcol - curwin->w_skipcol + scrolloff_cols;
1951 int row = 0;
1952 if (col >= width1)
1953 {
1954 col -= width1;
1955 ++row;
1956 }
1957 if (col > width2)
1958 {
1959 row += col / width2;
1960 col = col % width2;
1961 }
1962 if (row >= curwin->w_height)
1963 {
1964 if (curwin->w_skipcol == 0)
1965 {
1966 curwin->w_skipcol += width1;
1967 --row;
1968 }
1969 if (row >= curwin->w_height)
1970 curwin->w_skipcol += (row - curwin->w_height) * width2;
1971 redraw_later(UPD_NOT_VALID);
1972 }
1973}
1974
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975#ifdef FEAT_DIFF
1976/*
1977 * Don't end up with too many filler lines in the window.
1978 */
1979 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001980check_topfill(
1981 win_T *wp,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001982 int down) // when TRUE scroll down when not enough space
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983{
1984 int n;
1985
1986 if (wp->w_topfill > 0)
1987 {
1988 n = plines_win_nofill(wp, wp->w_topline, TRUE);
1989 if (wp->w_topfill + n > wp->w_height)
1990 {
1991 if (down && wp->w_topline > 1)
1992 {
1993 --wp->w_topline;
1994 wp->w_topfill = 0;
1995 }
1996 else
1997 {
1998 wp->w_topfill = wp->w_height - n;
1999 if (wp->w_topfill < 0)
2000 wp->w_topfill = 0;
2001 }
2002 }
2003 }
2004}
2005
2006/*
2007 * Use as many filler lines as possible for w_topline. Make sure w_topline
2008 * is still visible.
2009 */
2010 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002011max_topfill(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012{
2013 int n;
2014
2015 n = plines_nofill(curwin->w_topline);
2016 if (n >= curwin->w_height)
2017 curwin->w_topfill = 0;
2018 else
2019 {
2020 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
2021 if (curwin->w_topfill + n > curwin->w_height)
2022 curwin->w_topfill = curwin->w_height - n;
2023 }
2024}
2025#endif
2026
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027/*
2028 * Scroll the screen one line down, but don't do it if it would move the
2029 * cursor off the screen.
2030 */
2031 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002032scrolldown_clamp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033{
2034 int end_row;
2035#ifdef FEAT_DIFF
2036 int can_fill = (curwin->w_topfill
2037 < diff_check_fill(curwin, curwin->w_topline));
2038#endif
2039
2040 if (curwin->w_topline <= 1
2041#ifdef FEAT_DIFF
2042 && !can_fill
2043#endif
2044 )
2045 return;
2046
Bram Moolenaar85a20022019-12-21 18:25:54 +01002047 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048
2049 /*
2050 * Compute the row number of the last row of the cursor line
2051 * and make sure it doesn't go off the screen. Make sure the cursor
2052 * doesn't go past 'scrolloff' lines from the screen end.
2053 */
2054 end_row = curwin->w_wrow;
2055#ifdef FEAT_DIFF
2056 if (can_fill)
2057 ++end_row;
2058 else
2059 end_row += plines_nofill(curwin->w_topline - 1);
2060#else
2061 end_row += plines(curwin->w_topline - 1);
2062#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02002063 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 {
2065 validate_cheight();
2066 validate_virtcol();
2067 end_row += curwin->w_cline_height - 1 -
Bram Moolenaar02631462017-09-22 15:20:32 +02002068 curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 }
Bram Moolenaar375e3392019-01-31 18:26:10 +01002070 if (end_row < curwin->w_height - get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 {
2072#ifdef FEAT_DIFF
2073 if (can_fill)
2074 {
2075 ++curwin->w_topfill;
2076 check_topfill(curwin, TRUE);
2077 }
2078 else
2079 {
2080 --curwin->w_topline;
2081 curwin->w_topfill = 0;
2082 }
2083#else
2084 --curwin->w_topline;
2085#endif
2086#ifdef FEAT_FOLDING
Bram Moolenaarcde88542015-08-11 19:14:00 +02002087 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +01002089 --curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2091 }
2092}
2093
2094/*
2095 * Scroll the screen one line up, but don't do it if it would move the cursor
2096 * off the screen.
2097 */
2098 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002099scrollup_clamp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100{
2101 int start_row;
2102
2103 if (curwin->w_topline == curbuf->b_ml.ml_line_count
2104#ifdef FEAT_DIFF
2105 && curwin->w_topfill == 0
2106#endif
2107 )
2108 return;
2109
Bram Moolenaar85a20022019-12-21 18:25:54 +01002110 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111
2112 /*
2113 * Compute the row number of the first row of the cursor line
2114 * and make sure it doesn't go off the screen. Make sure the cursor
2115 * doesn't go before 'scrolloff' lines from the screen start.
2116 */
2117#ifdef FEAT_DIFF
2118 start_row = curwin->w_wrow - plines_nofill(curwin->w_topline)
2119 - curwin->w_topfill;
2120#else
2121 start_row = curwin->w_wrow - plines(curwin->w_topline);
2122#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02002123 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 {
2125 validate_virtcol();
Bram Moolenaar02631462017-09-22 15:20:32 +02002126 start_row -= curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 }
Bram Moolenaar375e3392019-01-31 18:26:10 +01002128 if (start_row >= get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 {
2130#ifdef FEAT_DIFF
2131 if (curwin->w_topfill > 0)
2132 --curwin->w_topfill;
2133 else
2134#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002135 {
2136#ifdef FEAT_FOLDING
2137 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
2138#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 ++curwin->w_topline;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002140 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002141 ++curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2143 }
2144}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145
2146/*
2147 * Add one line above "lp->lnum". This can be a filler line, a closed fold or
2148 * a (wrapped) text line. Uses and sets "lp->fill".
2149 * Returns the height of the added line in "lp->height".
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002150 * Lines above the first one are incredibly high: MAXCOL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 */
2152 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002153topline_back(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154{
2155#ifdef FEAT_DIFF
2156 if (lp->fill < diff_check_fill(curwin, lp->lnum))
2157 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002158 // Add a filler line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 ++lp->fill;
2160 lp->height = 1;
2161 }
2162 else
2163#endif
2164 {
2165 --lp->lnum;
2166#ifdef FEAT_DIFF
2167 lp->fill = 0;
2168#endif
2169 if (lp->lnum < 1)
2170 lp->height = MAXCOL;
2171 else
2172#ifdef FEAT_FOLDING
2173 if (hasFolding(lp->lnum, &lp->lnum, NULL))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002174 // Add a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 lp->height = 1;
2176 else
2177#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002178 lp->height = PLINES_NOFILL(lp->lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 }
2180}
2181
2182/*
2183 * Add one line below "lp->lnum". This can be a filler line, a closed fold or
2184 * a (wrapped) text line. Uses and sets "lp->fill".
2185 * Returns the height of the added line in "lp->height".
2186 * Lines below the last one are incredibly high.
2187 */
2188 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002189botline_forw(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190{
2191#ifdef FEAT_DIFF
2192 if (lp->fill < diff_check_fill(curwin, lp->lnum + 1))
2193 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002194 // Add a filler line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 ++lp->fill;
2196 lp->height = 1;
2197 }
2198 else
2199#endif
2200 {
2201 ++lp->lnum;
2202#ifdef FEAT_DIFF
2203 lp->fill = 0;
2204#endif
2205 if (lp->lnum > curbuf->b_ml.ml_line_count)
2206 lp->height = MAXCOL;
2207 else
2208#ifdef FEAT_FOLDING
2209 if (hasFolding(lp->lnum, NULL, &lp->lnum))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002210 // Add a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 lp->height = 1;
2212 else
2213#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002214 lp->height = PLINES_NOFILL(lp->lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 }
2216}
2217
2218#ifdef FEAT_DIFF
2219/*
2220 * Switch from including filler lines below lp->lnum to including filler
2221 * lines above loff.lnum + 1. This keeps pointing to the same line.
2222 * When there are no filler lines nothing changes.
2223 */
2224 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002225botline_topline(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226{
2227 if (lp->fill > 0)
2228 {
2229 ++lp->lnum;
2230 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
2231 }
2232}
2233
2234/*
2235 * Switch from including filler lines above lp->lnum to including filler
2236 * lines below loff.lnum - 1. This keeps pointing to the same line.
2237 * When there are no filler lines nothing changes.
2238 */
2239 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002240topline_botline(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241{
2242 if (lp->fill > 0)
2243 {
2244 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
2245 --lp->lnum;
2246 }
2247}
2248#endif
2249
2250/*
2251 * Recompute topline to put the cursor at the top of the window.
2252 * Scroll at least "min_scroll" lines.
2253 * If "always" is TRUE, always set topline (for "zt").
2254 */
2255 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002256scroll_cursor_top(int min_scroll, int always)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257{
2258 int scrolled = 0;
2259 int extra = 0;
2260 int used;
2261 int i;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002262 linenr_T top; // just above displayed lines
2263 linenr_T bot; // just below displayed lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar46b54742022-10-06 15:46:49 +01002265 int old_skipcol = curwin->w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266#ifdef FEAT_DIFF
2267 linenr_T old_topfill = curwin->w_topfill;
2268#endif
2269 linenr_T new_topline;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002270 int off = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 if (mouse_dragging > 0)
2273 off = mouse_dragging - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274
2275 /*
2276 * Decrease topline until:
2277 * - it has become 1
2278 * - (part of) the cursor line is moved off the screen or
2279 * - moved at least 'scrolljump' lines and
2280 * - at least 'scrolloff' lines above and below the cursor
2281 */
2282 validate_cheight();
Bram Moolenaar85a20022019-12-21 18:25:54 +01002283 used = curwin->w_cline_height; // includes filler lines above
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 if (curwin->w_cursor.lnum < curwin->w_topline)
2285 scrolled = used;
2286
2287#ifdef FEAT_FOLDING
2288 if (hasFolding(curwin->w_cursor.lnum, &top, &bot))
2289 {
2290 --top;
2291 ++bot;
2292 }
2293 else
2294#endif
2295 {
2296 top = curwin->w_cursor.lnum - 1;
2297 bot = curwin->w_cursor.lnum + 1;
2298 }
2299 new_topline = top + 1;
2300
2301#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002302 // "used" already contains the number of filler lines above, don't add it
2303 // again.
2304 // Hide filler lines above cursor line by adding them to "extra".
Bram Moolenaara09a2c52015-09-08 17:31:59 +02002305 extra += diff_check_fill(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306#endif
2307
2308 /*
2309 * Check if the lines from "top" to "bot" fit in the window. If they do,
2310 * set new_topline and advance "top" and "bot" to include more lines.
2311 */
2312 while (top > 0)
2313 {
2314#ifdef FEAT_FOLDING
2315 if (hasFolding(top, &top, NULL))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002316 // count one logical line for a sequence of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 i = 1;
2318 else
2319#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002320 i = PLINES_NOFILL(top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 used += i;
2322 if (extra + i <= off && bot < curbuf->b_ml.ml_line_count)
2323 {
2324#ifdef FEAT_FOLDING
2325 if (hasFolding(bot, NULL, &bot))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002326 // count one logical line for a sequence of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 ++used;
2328 else
2329#endif
2330 used += plines(bot);
2331 }
2332 if (used > curwin->w_height)
2333 break;
2334 if (top < curwin->w_topline)
2335 scrolled += i;
2336
2337 /*
2338 * If scrolling is needed, scroll at least 'sj' lines.
2339 */
2340 if ((new_topline >= curwin->w_topline || scrolled > min_scroll)
2341 && extra >= off)
2342 break;
2343
2344 extra += i;
2345 new_topline = top;
2346 --top;
2347 ++bot;
2348 }
2349
2350 /*
2351 * If we don't have enough space, put cursor in the middle.
2352 * This makes sure we get the same position when using "k" and "j"
2353 * in a small window.
2354 */
2355 if (used > curwin->w_height)
2356 scroll_cursor_halfway(FALSE);
2357 else
2358 {
2359 /*
2360 * If "always" is FALSE, only adjust topline to a lower value, higher
Bram Moolenaar1b73edd2022-12-03 11:51:54 +00002361 * value may happen with wrapping lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 */
2363 if (new_topline < curwin->w_topline || always)
2364 curwin->w_topline = new_topline;
2365 if (curwin->w_topline > curwin->w_cursor.lnum)
2366 curwin->w_topline = curwin->w_cursor.lnum;
2367#ifdef FEAT_DIFF
2368 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
2369 if (curwin->w_topfill > 0 && extra > off)
2370 {
2371 curwin->w_topfill -= extra - off;
2372 if (curwin->w_topfill < 0)
2373 curwin->w_topfill = 0;
2374 }
2375 check_topfill(curwin, FALSE);
2376#endif
Bram Moolenaar46b54742022-10-06 15:46:49 +01002377 // TODO: if the line doesn't fit may optimize w_skipcol
Bram Moolenaar1b73edd2022-12-03 11:51:54 +00002378 if (curwin->w_topline == curwin->w_cursor.lnum
2379 && curwin->w_skipcol >= curwin->w_cursor.col)
Bram Moolenaarf32fb932022-11-17 11:34:38 +00002380 reset_skipcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 if (curwin->w_topline != old_topline
Bram Moolenaar46b54742022-10-06 15:46:49 +01002382 || curwin->w_skipcol != old_skipcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383#ifdef FEAT_DIFF
2384 || curwin->w_topfill != old_topfill
2385#endif
2386 )
2387 curwin->w_valid &=
2388 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2389 curwin->w_valid |= VALID_TOPLINE;
2390 }
2391}
2392
2393/*
2394 * Set w_empty_rows and w_filler_rows for window "wp", having used up "used"
2395 * screen lines for text lines.
2396 */
2397 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002398set_empty_rows(win_T *wp, int used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399{
2400#ifdef FEAT_DIFF
2401 wp->w_filler_rows = 0;
2402#endif
2403 if (used == 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002404 wp->w_empty_rows = 0; // single line that doesn't fit
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 else
2406 {
2407 wp->w_empty_rows = wp->w_height - used;
2408#ifdef FEAT_DIFF
2409 if (wp->w_botline <= wp->w_buffer->b_ml.ml_line_count)
2410 {
2411 wp->w_filler_rows = diff_check_fill(wp, wp->w_botline);
2412 if (wp->w_empty_rows > wp->w_filler_rows)
2413 wp->w_empty_rows -= wp->w_filler_rows;
2414 else
2415 {
2416 wp->w_filler_rows = wp->w_empty_rows;
2417 wp->w_empty_rows = 0;
2418 }
2419 }
2420#endif
2421 }
2422}
2423
2424/*
2425 * Recompute topline to put the cursor at the bottom of the window.
Bram Moolenaar8088ae92022-06-20 11:38:17 +01002426 * When scrolling scroll at least "min_scroll" lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 * If "set_topbot" is TRUE, set topline and botline first (for "zb").
2428 * This is messy stuff!!!
2429 */
2430 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002431scroll_cursor_bot(int min_scroll, int set_topbot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432{
2433 int used;
2434 int scrolled = 0;
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002435 int min_scrolled = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 int extra = 0;
2437 int i;
2438 linenr_T line_count;
2439 linenr_T old_topline = curwin->w_topline;
2440 lineoff_T loff;
2441 lineoff_T boff;
2442#ifdef FEAT_DIFF
2443 int old_topfill = curwin->w_topfill;
2444 int fill_below_window;
2445#endif
2446 linenr_T old_botline = curwin->w_botline;
2447 linenr_T old_valid = curwin->w_valid;
2448 int old_empty_rows = curwin->w_empty_rows;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002449 linenr_T cln; // Cursor Line Number
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002450 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451
2452 cln = curwin->w_cursor.lnum;
2453 if (set_topbot)
2454 {
2455 used = 0;
2456 curwin->w_botline = cln + 1;
2457#ifdef FEAT_DIFF
2458 loff.fill = 0;
2459#endif
2460 for (curwin->w_topline = curwin->w_botline;
2461 curwin->w_topline > 1;
2462 curwin->w_topline = loff.lnum)
2463 {
2464 loff.lnum = curwin->w_topline;
2465 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002466 if (loff.height == MAXCOL || used + loff.height > curwin->w_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 break;
2468 used += loff.height;
2469#ifdef FEAT_DIFF
2470 curwin->w_topfill = loff.fill;
2471#endif
2472 }
2473 set_empty_rows(curwin, used);
2474 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
2475 if (curwin->w_topline != old_topline
2476#ifdef FEAT_DIFF
2477 || curwin->w_topfill != old_topfill
2478#endif
2479 )
2480 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2481 }
2482 else
2483 validate_botline();
2484
Bram Moolenaar85a20022019-12-21 18:25:54 +01002485 // The lines of the cursor line itself are always used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486#ifdef FEAT_DIFF
2487 used = plines_nofill(cln);
2488#else
2489 validate_cheight();
2490 used = curwin->w_cline_height;
2491#endif
2492
Yee Cheng Chin361895d2022-11-19 12:25:16 +00002493 // If the cursor is on or below botline, we will at least scroll by the
2494 // height of the cursor line, which is "used". Correct for empty lines,
2495 // which are really part of botline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 if (cln >= curwin->w_botline)
2497 {
2498 scrolled = used;
2499 if (cln == curwin->w_botline)
2500 scrolled -= curwin->w_empty_rows;
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002501 min_scrolled = scrolled;
Yee Cheng Chin361895d2022-11-19 12:25:16 +00002502 if (curwin->w_p_sms && curwin->w_p_wrap)
2503 {
2504 // 'smoothscroll' and 'wrap' are set
2505 if (cln > curwin->w_botline)
2506 // add screen lines below w_botline
2507 for (linenr_T lnum = curwin->w_botline + 1; lnum <= cln; ++lnum)
2508 min_scrolled += PLINES_NOFILL(lnum);
2509
2510 // Calculate how many screen lines the current top line of window
2511 // occupies. If it is occupying more than the entire window, we
2512 // need to scroll the additional clipped lines to scroll past the
2513 // top line before we can move on to the other lines.
2514 int top_plines =
2515#ifdef FEAT_DIFF
2516 plines_win_nofill
2517#else
2518 plines_win
2519#endif
2520 (curwin, curwin->w_topline, FALSE);
2521 int skip_lines = 0;
2522 int width1 = curwin->w_width - curwin_col_off();
2523 int width2 = width1 + curwin_col_off2();
2524 // similar formula is used in curs_columns()
2525 if (curwin->w_skipcol > width1)
2526 skip_lines += (curwin->w_skipcol - width1) / width2 + 1;
2527 else if (curwin->w_skipcol > 0)
2528 skip_lines = 1;
2529
2530 top_plines -= skip_lines;
2531 if (top_plines > curwin->w_height)
2532 {
2533 scrolled += (top_plines - curwin->w_height);
2534 min_scrolled += (top_plines - curwin->w_height);
2535 }
2536 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 }
2538
2539 /*
2540 * Stop counting lines to scroll when
2541 * - hitting start of the file
2542 * - scrolled nothing or at least 'sj' lines
Bram Moolenaar375e3392019-01-31 18:26:10 +01002543 * - at least 'scrolloff' lines below the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 * - lines between botline and cursor have been counted
2545 */
2546#ifdef FEAT_FOLDING
2547 if (!hasFolding(curwin->w_cursor.lnum, &loff.lnum, &boff.lnum))
2548#endif
2549 {
2550 loff.lnum = cln;
2551 boff.lnum = cln;
2552 }
2553#ifdef FEAT_DIFF
2554 loff.fill = 0;
2555 boff.fill = 0;
2556 fill_below_window = diff_check_fill(curwin, curwin->w_botline)
2557 - curwin->w_filler_rows;
2558#endif
2559
2560 while (loff.lnum > 1)
2561 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002562 // Stop when scrolled nothing or at least "min_scroll", found "extra"
2563 // context for 'scrolloff' and counted all lines below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 if ((((scrolled <= 0 || scrolled >= min_scroll)
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002565 && extra >= (mouse_dragging > 0 ? mouse_dragging - 1 : so))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 || boff.lnum + 1 > curbuf->b_ml.ml_line_count)
2567 && loff.lnum <= curwin->w_botline
2568#ifdef FEAT_DIFF
2569 && (loff.lnum < curwin->w_botline
2570 || loff.fill >= fill_below_window)
2571#endif
2572 )
2573 break;
2574
Bram Moolenaar85a20022019-12-21 18:25:54 +01002575 // Add one line above
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002577 if (loff.height == MAXCOL)
2578 used = MAXCOL;
2579 else
2580 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 if (used > curwin->w_height)
2582 break;
2583 if (loff.lnum >= curwin->w_botline
2584#ifdef FEAT_DIFF
2585 && (loff.lnum > curwin->w_botline
2586 || loff.fill <= fill_below_window)
2587#endif
2588 )
2589 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002590 // Count screen lines that are below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 scrolled += loff.height;
2592 if (loff.lnum == curwin->w_botline
2593#ifdef FEAT_DIFF
Bram Moolenaar4e303c82018-11-24 14:27:44 +01002594 && loff.fill == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595#endif
2596 )
2597 scrolled -= curwin->w_empty_rows;
2598 }
2599
2600 if (boff.lnum < curbuf->b_ml.ml_line_count)
2601 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002602 // Add one line below
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 botline_forw(&boff);
2604 used += boff.height;
2605 if (used > curwin->w_height)
2606 break;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002607 if (extra < ( mouse_dragging > 0 ? mouse_dragging - 1 : so)
2608 || scrolled < min_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 {
2610 extra += boff.height;
2611 if (boff.lnum >= curwin->w_botline
2612#ifdef FEAT_DIFF
2613 || (boff.lnum + 1 == curwin->w_botline
2614 && boff.fill > curwin->w_filler_rows)
2615#endif
2616 )
2617 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002618 // Count screen lines that are below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 scrolled += boff.height;
2620 if (boff.lnum == curwin->w_botline
2621#ifdef FEAT_DIFF
2622 && boff.fill == 0
2623#endif
2624 )
2625 scrolled -= curwin->w_empty_rows;
2626 }
2627 }
2628 }
2629 }
2630
Bram Moolenaar85a20022019-12-21 18:25:54 +01002631 // curwin->w_empty_rows is larger, no need to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 if (scrolled <= 0)
2633 line_count = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002634 // more than a screenfull, don't scroll but redraw
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 else if (used > curwin->w_height)
2636 line_count = used;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002637 // scroll minimal number of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 else
2639 {
2640 line_count = 0;
2641#ifdef FEAT_DIFF
2642 boff.fill = curwin->w_topfill;
2643#endif
2644 boff.lnum = curwin->w_topline - 1;
2645 for (i = 0; i < scrolled && boff.lnum < curwin->w_botline; )
2646 {
2647 botline_forw(&boff);
2648 i += boff.height;
2649 ++line_count;
2650 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002651 if (i < scrolled) // below curwin->w_botline, don't scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 line_count = 9999;
2653 }
2654
2655 /*
2656 * Scroll up if the cursor is off the bottom of the screen a bit.
2657 * Otherwise put it at 1/2 of the screen.
2658 */
2659 if (line_count >= curwin->w_height && line_count > min_scroll)
2660 scroll_cursor_halfway(FALSE);
2661 else
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002662 {
Bram Moolenaard5337ef2022-10-20 20:15:47 +01002663 // With 'smoothscroll' scroll at least the height of the cursor line,
2664 // unless it would move the cursor.
2665 if (curwin->w_p_wrap && curwin->w_p_sms && line_count < min_scrolled
2666 && (curwin->w_cursor.lnum < curwin->w_topline
2667 || (curwin->w_virtcol - curwin->w_skipcol >=
2668 curwin->w_width - curwin_col_off())))
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002669 line_count = min_scrolled;
Bram Moolenaard5337ef2022-10-20 20:15:47 +01002670 if (line_count > 0)
2671 {
2672 if (scrolling_screenlines(TRUE))
2673 scrollup(scrolled, TRUE); // TODO
2674 else
2675 scrollup(line_count, TRUE);
2676 }
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002677 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678
2679 /*
2680 * If topline didn't change we need to restore w_botline and w_empty_rows
2681 * (we changed them).
2682 * If topline did change, update_screen() will set botline.
2683 */
2684 if (curwin->w_topline == old_topline && set_topbot)
2685 {
2686 curwin->w_botline = old_botline;
2687 curwin->w_empty_rows = old_empty_rows;
2688 curwin->w_valid = old_valid;
2689 }
2690 curwin->w_valid |= VALID_TOPLINE;
2691}
2692
2693/*
2694 * Recompute topline to put the cursor halfway the window
2695 * If "atend" is TRUE, also put it halfway at the end of the file.
2696 */
2697 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002698scroll_cursor_halfway(int atend)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699{
2700 int above = 0;
2701 linenr_T topline;
2702#ifdef FEAT_DIFF
2703 int topfill = 0;
2704#endif
2705 int below = 0;
2706 int used;
2707 lineoff_T loff;
2708 lineoff_T boff;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002709#ifdef FEAT_DIFF
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002710 linenr_T old_topline = curwin->w_topline;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002711#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712
Bram Moolenaar3697c9b2020-09-26 22:03:00 +02002713#ifdef FEAT_PROP_POPUP
2714 // if the width changed this needs to be updated first
2715 may_update_popup_position();
2716#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 loff.lnum = boff.lnum = curwin->w_cursor.lnum;
2718#ifdef FEAT_FOLDING
2719 (void)hasFolding(loff.lnum, &loff.lnum, &boff.lnum);
2720#endif
2721#ifdef FEAT_DIFF
2722 used = plines_nofill(loff.lnum);
2723 loff.fill = 0;
2724 boff.fill = 0;
2725#else
2726 used = plines(loff.lnum);
2727#endif
2728 topline = loff.lnum;
2729 while (topline > 1)
2730 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002731 if (below <= above) // add a line below the cursor first
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732 {
2733 if (boff.lnum < curbuf->b_ml.ml_line_count)
2734 {
2735 botline_forw(&boff);
2736 used += boff.height;
2737 if (used > curwin->w_height)
2738 break;
2739 below += boff.height;
2740 }
2741 else
2742 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002743 ++below; // count a "~" line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 if (atend)
2745 ++used;
2746 }
2747 }
2748
Bram Moolenaar85a20022019-12-21 18:25:54 +01002749 if (below > above) // add a line above the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 {
2751 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002752 if (loff.height == MAXCOL)
2753 used = MAXCOL;
2754 else
2755 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 if (used > curwin->w_height)
2757 break;
2758 above += loff.height;
2759 topline = loff.lnum;
2760#ifdef FEAT_DIFF
2761 topfill = loff.fill;
2762#endif
2763 }
2764 }
2765#ifdef FEAT_FOLDING
2766 if (!hasFolding(topline, &curwin->w_topline, NULL))
2767#endif
2768 curwin->w_topline = topline;
2769#ifdef FEAT_DIFF
2770 curwin->w_topfill = topfill;
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002771 if (old_topline > curwin->w_topline + curwin->w_height)
2772 curwin->w_botfill = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 check_topfill(curwin, FALSE);
2774#endif
2775 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2776 curwin->w_valid |= VALID_TOPLINE;
2777}
2778
2779/*
2780 * Correct the cursor position so that it is in a part of the screen at least
Bram Moolenaar375e3392019-01-31 18:26:10 +01002781 * 'scrolloff' lines from the top and bottom, if possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 * If not possible, put it at the same position as scroll_cursor_halfway().
2783 * When called topline must be valid!
2784 */
2785 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002786cursor_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787{
Bram Moolenaar85a20022019-12-21 18:25:54 +01002788 int above = 0; // screen lines above topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 linenr_T topline;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002790 int below = 0; // screen lines below botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 linenr_T botline;
2792 int above_wanted, below_wanted;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002793 linenr_T cln; // Cursor Line Number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 int max_off;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002795 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796
2797 /*
2798 * How many lines we would like to have above/below the cursor depends on
2799 * whether the first/last line of the file is on screen.
2800 */
Bram Moolenaar375e3392019-01-31 18:26:10 +01002801 above_wanted = so;
2802 below_wanted = so;
Bram Moolenaar9964e462007-05-05 17:54:07 +00002803 if (mouse_dragging > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 {
2805 above_wanted = mouse_dragging - 1;
2806 below_wanted = mouse_dragging - 1;
2807 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 if (curwin->w_topline == 1)
2809 {
2810 above_wanted = 0;
2811 max_off = curwin->w_height / 2;
2812 if (below_wanted > max_off)
2813 below_wanted = max_off;
2814 }
2815 validate_botline();
2816 if (curwin->w_botline == curbuf->b_ml.ml_line_count + 1
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002817 && mouse_dragging == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 {
2819 below_wanted = 0;
2820 max_off = (curwin->w_height - 1) / 2;
2821 if (above_wanted > max_off)
2822 above_wanted = max_off;
2823 }
2824
2825 /*
2826 * If there are sufficient file-lines above and below the cursor, we can
2827 * return now.
2828 */
2829 cln = curwin->w_cursor.lnum;
2830 if (cln >= curwin->w_topline + above_wanted
2831 && cln < curwin->w_botline - below_wanted
2832#ifdef FEAT_FOLDING
2833 && !hasAnyFolding(curwin)
2834#endif
2835 )
2836 return;
2837
Bram Moolenaarc9121f72022-10-14 20:09:04 +01002838 if (curwin->w_p_sms && !curwin->w_p_wrap)
2839 {
2840 // 'smoothscroll is active
2841 if (curwin->w_cline_height == curwin->w_height)
2842 {
2843 // The cursor line just fits in the window, don't scroll.
Bram Moolenaarf32fb932022-11-17 11:34:38 +00002844 reset_skipcol();
Bram Moolenaarc9121f72022-10-14 20:09:04 +01002845 return;
2846 }
2847 // TODO: If the cursor line doesn't fit in the window then only adjust
2848 // w_skipcol.
2849 }
2850
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 /*
2852 * Narrow down the area where the cursor can be put by taking lines from
2853 * the top and the bottom until:
2854 * - the desired context lines are found
2855 * - the lines from the top is past the lines from the bottom
2856 */
2857 topline = curwin->w_topline;
2858 botline = curwin->w_botline - 1;
2859#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002860 // count filler lines as context
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 above = curwin->w_topfill;
2862 below = curwin->w_filler_rows;
2863#endif
2864 while ((above < above_wanted || below < below_wanted) && topline < botline)
2865 {
2866 if (below < below_wanted && (below <= above || above >= above_wanted))
2867 {
2868#ifdef FEAT_FOLDING
2869 if (hasFolding(botline, &botline, NULL))
2870 ++below;
2871 else
2872#endif
2873 below += plines(botline);
2874 --botline;
2875 }
2876 if (above < above_wanted && (above < below || below >= below_wanted))
2877 {
2878#ifdef FEAT_FOLDING
2879 if (hasFolding(topline, NULL, &topline))
2880 ++above;
2881 else
2882#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002883 above += PLINES_NOFILL(topline);
2884#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002885 // Count filler lines below this line as context.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 if (topline < botline)
2887 above += diff_check_fill(curwin, topline + 1);
2888#endif
2889 ++topline;
2890 }
2891 }
2892 if (topline == botline || botline == 0)
2893 curwin->w_cursor.lnum = topline;
2894 else if (topline > botline)
2895 curwin->w_cursor.lnum = botline;
2896 else
2897 {
2898 if (cln < topline && curwin->w_topline > 1)
2899 {
2900 curwin->w_cursor.lnum = topline;
2901 curwin->w_valid &=
2902 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2903 }
2904 if (cln > botline && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2905 {
2906 curwin->w_cursor.lnum = botline;
2907 curwin->w_valid &=
2908 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2909 }
2910 }
2911 curwin->w_valid |= VALID_TOPLINE;
2912}
2913
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01002914static void get_scroll_overlap(lineoff_T *lp, int dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915
2916/*
Bram Moolenaar88456cd2022-11-18 22:14:09 +00002917 * Move screen "count" pages up ("dir" is BACKWARD) or down ("dir" is FORWARD)
2918 * and update the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 *
Yee Cheng Chin81ba26e2022-11-18 12:52:50 +00002920 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 */
2922 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002923onepage(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924{
2925 long n;
2926 int retval = OK;
2927 lineoff_T loff;
2928 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002929 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930
Bram Moolenaar85a20022019-12-21 18:25:54 +01002931 if (curbuf->b_ml.ml_line_count == 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 {
2933 beep_flush();
2934 return FAIL;
2935 }
2936
2937 for ( ; count > 0; --count)
2938 {
2939 validate_botline();
2940 /*
2941 * It's an error to move a page up when the first line is already on
2942 * the screen. It's an error to move a page down when the last line
2943 * is on the screen and the topline is 'scrolloff' lines from the
2944 * last line.
2945 */
2946 if (dir == FORWARD
Bram Moolenaar375e3392019-01-31 18:26:10 +01002947 ? ((curwin->w_topline >= curbuf->b_ml.ml_line_count - so)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 && curwin->w_botline > curbuf->b_ml.ml_line_count)
2949 : (curwin->w_topline == 1
2950#ifdef FEAT_DIFF
2951 && curwin->w_topfill ==
2952 diff_check_fill(curwin, curwin->w_topline)
2953#endif
2954 ))
2955 {
2956 beep_flush();
2957 retval = FAIL;
2958 break;
2959 }
2960
2961#ifdef FEAT_DIFF
2962 loff.fill = 0;
2963#endif
2964 if (dir == FORWARD)
2965 {
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002966 if (ONE_WINDOW && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002968 // Vi compatible scrolling
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002969 if (p_window <= 2)
2970 ++curwin->w_topline;
2971 else
2972 curwin->w_topline += p_window - 2;
2973 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
2974 curwin->w_topline = curbuf->b_ml.ml_line_count;
2975 curwin->w_cursor.lnum = curwin->w_topline;
2976 }
2977 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2978 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002979 // at end of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 curwin->w_topline = curbuf->b_ml.ml_line_count;
2981#ifdef FEAT_DIFF
2982 curwin->w_topfill = 0;
2983#endif
2984 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2985 }
2986 else
2987 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002988 // For the overlap, start with the line just below the window
2989 // and go upwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 loff.lnum = curwin->w_botline;
2991#ifdef FEAT_DIFF
2992 loff.fill = diff_check_fill(curwin, loff.lnum)
2993 - curwin->w_filler_rows;
2994#endif
2995 get_scroll_overlap(&loff, -1);
2996 curwin->w_topline = loff.lnum;
2997#ifdef FEAT_DIFF
2998 curwin->w_topfill = loff.fill;
2999 check_topfill(curwin, FALSE);
3000#endif
3001 curwin->w_cursor.lnum = curwin->w_topline;
3002 curwin->w_valid &= ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|
3003 VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
3004 }
3005 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01003006 else // dir == BACKWARDS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 {
3008#ifdef FEAT_DIFF
3009 if (curwin->w_topline == 1)
3010 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01003011 // Include max number of filler lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 max_topfill();
3013 continue;
3014 }
3015#endif
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01003016 if (ONE_WINDOW && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003017 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01003018 // Vi compatible scrolling (sort of)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003019 if (p_window <= 2)
3020 --curwin->w_topline;
3021 else
3022 curwin->w_topline -= p_window - 2;
3023 if (curwin->w_topline < 1)
3024 curwin->w_topline = 1;
3025 curwin->w_cursor.lnum = curwin->w_topline + p_window - 1;
3026 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3027 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3028 continue;
3029 }
3030
Bram Moolenaar85a20022019-12-21 18:25:54 +01003031 // Find the line at the top of the window that is going to be the
3032 // line at the bottom of the window. Make sure this results in
3033 // the same line as before doing CTRL-F.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034 loff.lnum = curwin->w_topline - 1;
3035#ifdef FEAT_DIFF
3036 loff.fill = diff_check_fill(curwin, loff.lnum + 1)
3037 - curwin->w_topfill;
3038#endif
3039 get_scroll_overlap(&loff, 1);
3040
3041 if (loff.lnum >= curbuf->b_ml.ml_line_count)
3042 {
3043 loff.lnum = curbuf->b_ml.ml_line_count;
3044#ifdef FEAT_DIFF
3045 loff.fill = 0;
3046 }
3047 else
3048 {
3049 botline_topline(&loff);
3050#endif
3051 }
3052 curwin->w_cursor.lnum = loff.lnum;
3053
Bram Moolenaar85a20022019-12-21 18:25:54 +01003054 // Find the line just above the new topline to get the right line
3055 // at the bottom of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 n = 0;
3057 while (n <= curwin->w_height && loff.lnum >= 1)
3058 {
3059 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01003060 if (loff.height == MAXCOL)
3061 n = MAXCOL;
3062 else
3063 n += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01003065 if (loff.lnum < 1) // at begin of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066 {
3067 curwin->w_topline = 1;
3068#ifdef FEAT_DIFF
3069 max_topfill();
3070#endif
3071 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
3072 }
3073 else
3074 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01003075 // Go two lines forward again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076#ifdef FEAT_DIFF
3077 topline_botline(&loff);
3078#endif
3079 botline_forw(&loff);
3080 botline_forw(&loff);
3081#ifdef FEAT_DIFF
3082 botline_topline(&loff);
3083#endif
3084#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01003085 // We're at the wrong end of a fold now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 (void)hasFolding(loff.lnum, &loff.lnum, NULL);
3087#endif
3088
Bram Moolenaar85a20022019-12-21 18:25:54 +01003089 // Always scroll at least one line. Avoid getting stuck on
3090 // very long lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091 if (loff.lnum >= curwin->w_topline
3092#ifdef FEAT_DIFF
3093 && (loff.lnum > curwin->w_topline
3094 || loff.fill >= curwin->w_topfill)
3095#endif
3096 )
3097 {
3098#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01003099 // First try using the maximum number of filler lines. If
3100 // that's not enough, backup one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 loff.fill = curwin->w_topfill;
3102 if (curwin->w_topfill < diff_check_fill(curwin,
3103 curwin->w_topline))
3104 max_topfill();
3105 if (curwin->w_topfill == loff.fill)
3106#endif
3107 {
3108 --curwin->w_topline;
3109#ifdef FEAT_DIFF
3110 curwin->w_topfill = 0;
3111#endif
3112 }
3113 comp_botline(curwin);
3114 curwin->w_cursor.lnum = curwin->w_botline - 1;
Bram Moolenaar3d6db142014-03-28 21:49:32 +01003115 curwin->w_valid &=
3116 ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|VALID_CROW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 }
3118 else
3119 {
3120 curwin->w_topline = loff.lnum;
3121#ifdef FEAT_DIFF
3122 curwin->w_topfill = loff.fill;
3123 check_topfill(curwin, FALSE);
3124#endif
3125 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
3126 }
3127 }
3128 }
3129 }
3130#ifdef FEAT_FOLDING
3131 foldAdjustCursor();
3132#endif
3133 cursor_correct();
Bram Moolenaarbc54f3f2016-09-04 14:34:28 +02003134 check_cursor_col();
Bram Moolenaar7c626922005-02-07 22:01:03 +00003135 if (retval == OK)
3136 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137 curwin->w_valid &= ~(VALID_WCOL|VALID_WROW|VALID_VIRTCOL);
3138
Bram Moolenaar907dad72018-07-10 15:07:15 +02003139 if (retval == OK && dir == FORWARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 {
Bram Moolenaar907dad72018-07-10 15:07:15 +02003141 // Avoid the screen jumping up and down when 'scrolloff' is non-zero.
3142 // But make sure we scroll at least one line (happens with mix of long
3143 // wrapping lines and non-wrapping line).
3144 if (check_top_offset())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 {
Bram Moolenaar907dad72018-07-10 15:07:15 +02003146 scroll_cursor_top(1, FALSE);
3147 if (curwin->w_topline <= old_topline
3148 && old_topline < curbuf->b_ml.ml_line_count)
3149 {
3150 curwin->w_topline = old_topline + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151#ifdef FEAT_FOLDING
Bram Moolenaar907dad72018-07-10 15:07:15 +02003152 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
3153#endif
3154 }
3155 }
3156#ifdef FEAT_FOLDING
3157 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
3159#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 }
3161
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003162 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 return retval;
3164}
3165
3166/*
3167 * Decide how much overlap to use for page-up or page-down scrolling.
3168 * This is symmetric, so that doing both keeps the same lines displayed.
3169 * Three lines are examined:
3170 *
3171 * before CTRL-F after CTRL-F / before CTRL-B
3172 * etc. l1
3173 * l1 last but one line ------------
3174 * l2 last text line l2 top text line
3175 * ------------- l3 second text line
3176 * l3 etc.
3177 */
3178 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003179get_scroll_overlap(lineoff_T *lp, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180{
3181 int h1, h2, h3, h4;
3182 int min_height = curwin->w_height - 2;
3183 lineoff_T loff0, loff1, loff2;
3184
3185#ifdef FEAT_DIFF
3186 if (lp->fill > 0)
3187 lp->height = 1;
3188 else
3189 lp->height = plines_nofill(lp->lnum);
3190#else
3191 lp->height = plines(lp->lnum);
3192#endif
3193 h1 = lp->height;
3194 if (h1 > min_height)
Bram Moolenaar85a20022019-12-21 18:25:54 +01003195 return; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196
3197 loff0 = *lp;
3198 if (dir > 0)
3199 botline_forw(lp);
3200 else
3201 topline_back(lp);
3202 h2 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01003203 if (h2 == MAXCOL || h2 + h1 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01003205 *lp = loff0; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 return;
3207 }
3208
3209 loff1 = *lp;
3210 if (dir > 0)
3211 botline_forw(lp);
3212 else
3213 topline_back(lp);
3214 h3 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01003215 if (h3 == MAXCOL || h3 + h2 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01003217 *lp = loff0; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 return;
3219 }
3220
3221 loff2 = *lp;
3222 if (dir > 0)
3223 botline_forw(lp);
3224 else
3225 topline_back(lp);
3226 h4 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01003227 if (h4 == MAXCOL || h4 + h3 + h2 > min_height || h3 + h2 + h1 > min_height)
Bram Moolenaar85a20022019-12-21 18:25:54 +01003228 *lp = loff1; // 1 line overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 else
Bram Moolenaar85a20022019-12-21 18:25:54 +01003230 *lp = loff2; // 2 lines overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231}
3232
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233/*
3234 * Scroll 'scroll' lines up or down.
3235 */
3236 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003237halfpage(int flag, linenr_T Prenum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238{
3239 long scrolled = 0;
3240 int i;
3241 int n;
3242 int room;
3243
3244 if (Prenum)
3245 curwin->w_p_scr = (Prenum > curwin->w_height) ?
3246 curwin->w_height : Prenum;
3247 n = (curwin->w_p_scr <= curwin->w_height) ?
3248 curwin->w_p_scr : curwin->w_height;
3249
Bram Moolenaard5d37532017-03-27 23:02:07 +02003250 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251 validate_botline();
3252 room = curwin->w_empty_rows;
3253#ifdef FEAT_DIFF
3254 room += curwin->w_filler_rows;
3255#endif
3256 if (flag)
3257 {
3258 /*
3259 * scroll the text up
3260 */
3261 while (n > 0 && curwin->w_botline <= curbuf->b_ml.ml_line_count)
3262 {
3263#ifdef FEAT_DIFF
3264 if (curwin->w_topfill > 0)
3265 {
3266 i = 1;
Bram Moolenaar8455c5e2020-07-14 21:22:30 +02003267 --n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 --curwin->w_topfill;
3269 }
3270 else
3271#endif
3272 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02003273 i = PLINES_NOFILL(curwin->w_topline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 n -= i;
3275 if (n < 0 && scrolled > 0)
3276 break;
3277#ifdef FEAT_FOLDING
3278 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
3279#endif
3280 ++curwin->w_topline;
3281#ifdef FEAT_DIFF
3282 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
3283#endif
3284
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3286 {
3287 ++curwin->w_cursor.lnum;
3288 curwin->w_valid &=
3289 ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
3290 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 }
3292 curwin->w_valid &= ~(VALID_CROW|VALID_WROW);
3293 scrolled += i;
3294
3295 /*
3296 * Correct w_botline for changed w_topline.
3297 * Won't work when there are filler lines.
3298 */
3299#ifdef FEAT_DIFF
3300 if (curwin->w_p_diff)
3301 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
3302 else
3303#endif
3304 {
3305 room += i;
3306 do
3307 {
3308 i = plines(curwin->w_botline);
3309 if (i > room)
3310 break;
3311#ifdef FEAT_FOLDING
3312 (void)hasFolding(curwin->w_botline, NULL,
3313 &curwin->w_botline);
3314#endif
3315 ++curwin->w_botline;
3316 room -= i;
3317 } while (curwin->w_botline <= curbuf->b_ml.ml_line_count);
3318 }
3319 }
3320
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 /*
3322 * When hit bottom of the file: move cursor down.
3323 */
3324 if (n > 0)
3325 {
3326# ifdef FEAT_FOLDING
3327 if (hasAnyFolding(curwin))
3328 {
3329 while (--n >= 0
3330 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3331 {
3332 (void)hasFolding(curwin->w_cursor.lnum, NULL,
3333 &curwin->w_cursor.lnum);
3334 ++curwin->w_cursor.lnum;
3335 }
3336 }
3337 else
3338# endif
3339 curwin->w_cursor.lnum += n;
3340 check_cursor_lnum();
3341 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342 }
3343 else
3344 {
3345 /*
3346 * scroll the text down
3347 */
3348 while (n > 0 && curwin->w_topline > 1)
3349 {
3350#ifdef FEAT_DIFF
3351 if (curwin->w_topfill < diff_check_fill(curwin, curwin->w_topline))
3352 {
3353 i = 1;
Bram Moolenaard00e0242019-03-20 21:42:20 +01003354 --n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 ++curwin->w_topfill;
3356 }
3357 else
3358#endif
3359 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02003360 i = PLINES_NOFILL(curwin->w_topline - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 n -= i;
3362 if (n < 0 && scrolled > 0)
3363 break;
3364 --curwin->w_topline;
3365#ifdef FEAT_FOLDING
3366 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
3367#endif
3368#ifdef FEAT_DIFF
3369 curwin->w_topfill = 0;
3370#endif
3371 }
3372 curwin->w_valid &= ~(VALID_CROW|VALID_WROW|
3373 VALID_BOTLINE|VALID_BOTLINE_AP);
3374 scrolled += i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375 if (curwin->w_cursor.lnum > 1)
3376 {
3377 --curwin->w_cursor.lnum;
3378 curwin->w_valid &= ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
3379 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 }
Bram Moolenaard00e0242019-03-20 21:42:20 +01003381
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 /*
3383 * When hit top of the file: move cursor up.
3384 */
3385 if (n > 0)
3386 {
3387 if (curwin->w_cursor.lnum <= (linenr_T)n)
3388 curwin->w_cursor.lnum = 1;
3389 else
3390# ifdef FEAT_FOLDING
3391 if (hasAnyFolding(curwin))
3392 {
3393 while (--n >= 0 && curwin->w_cursor.lnum > 1)
3394 {
3395 --curwin->w_cursor.lnum;
3396 (void)hasFolding(curwin->w_cursor.lnum,
3397 &curwin->w_cursor.lnum, NULL);
3398 }
3399 }
3400 else
3401# endif
3402 curwin->w_cursor.lnum -= n;
3403 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 }
3405# ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01003406 // Move cursor to first line of closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 foldAdjustCursor();
3408# endif
3409#ifdef FEAT_DIFF
3410 check_topfill(curwin, !flag);
3411#endif
3412 cursor_correct();
3413 beginline(BL_SOL | BL_FIX);
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003414 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415}
Bram Moolenaar860cae12010-06-05 23:22:07 +02003416
Bram Moolenaar860cae12010-06-05 23:22:07 +02003417 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003418do_check_cursorbind(void)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003419{
3420 linenr_T line = curwin->w_cursor.lnum;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003421 colnr_T col = curwin->w_cursor.col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003422 colnr_T coladd = curwin->w_cursor.coladd;
Bram Moolenaar524780d2012-03-28 14:19:50 +02003423 colnr_T curswant = curwin->w_curswant;
3424 int set_curswant = curwin->w_set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003425 win_T *old_curwin = curwin;
3426 buf_T *old_curbuf = curbuf;
Bram Moolenaar61452852011-02-01 18:01:11 +01003427 int restart_edit_save;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003428 int old_VIsual_select = VIsual_select;
3429 int old_VIsual_active = VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003430
3431 /*
3432 * loop through the cursorbound windows
3433 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003434 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02003435 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003436 {
3437 curbuf = curwin->w_buffer;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003438 // skip original window and windows with 'noscrollbind'
Bram Moolenaar860cae12010-06-05 23:22:07 +02003439 if (curwin != old_curwin && curwin->w_p_crb)
3440 {
3441# ifdef FEAT_DIFF
3442 if (curwin->w_p_diff)
Bram Moolenaar025e3e02016-10-18 14:50:18 +02003443 curwin->w_cursor.lnum =
3444 diff_get_corresponding_line(old_curbuf, line);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003445 else
3446# endif
3447 curwin->w_cursor.lnum = line;
3448 curwin->w_cursor.col = col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003449 curwin->w_cursor.coladd = coladd;
Bram Moolenaar524780d2012-03-28 14:19:50 +02003450 curwin->w_curswant = curswant;
3451 curwin->w_set_curswant = set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003452
Bram Moolenaar85a20022019-12-21 18:25:54 +01003453 // Make sure the cursor is in a valid position. Temporarily set
3454 // "restart_edit" to allow the cursor to be beyond the EOL.
Bram Moolenaar61452852011-02-01 18:01:11 +01003455 restart_edit_save = restart_edit;
3456 restart_edit = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003457 check_cursor();
Bram Moolenaara315ce12022-06-24 12:38:57 +01003458
3459 // Avoid a scroll here for the cursor position, 'scrollbind' is
3460 // more important.
3461 if (!curwin->w_p_scb)
3462 validate_cursor();
3463
Bram Moolenaar61452852011-02-01 18:01:11 +01003464 restart_edit = restart_edit_save;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003465 // Correct cursor for multi-byte character.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003466 if (has_mbyte)
3467 mb_adjust_cursor();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003468 redraw_later(UPD_VALID);
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01003469
Bram Moolenaar85a20022019-12-21 18:25:54 +01003470 // Only scroll when 'scrollbind' hasn't done this.
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01003471 if (!curwin->w_p_scb)
3472 update_topline();
Bram Moolenaar860cae12010-06-05 23:22:07 +02003473 curwin->w_redr_status = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003474 }
3475 }
3476
3477 /*
3478 * reset current-window
3479 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003480 VIsual_select = old_VIsual_select;
3481 VIsual_active = old_VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003482 curwin = old_curwin;
3483 curbuf = old_curbuf;
3484}