blob: dca77f787c0b49534d3553e6061f0615e2ad861a [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;
53 width -= win_col_off2(wp);
54 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 Moolenaar071d4272004-06-13 20:20:40 +000065 * Compute wp->w_botline for the current wp->w_topline. Can be called after
66 * wp->w_topline changed.
67 */
68 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +010069comp_botline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000070{
71 int n;
72 linenr_T lnum;
73 int done;
74#ifdef FEAT_FOLDING
75 linenr_T last;
76 int folded;
77#endif
78
79 /*
80 * If w_cline_row is valid, start there.
81 * Otherwise have to start at w_topline.
82 */
83 check_cursor_moved(wp);
84 if (wp->w_valid & VALID_CROW)
85 {
86 lnum = wp->w_cursor.lnum;
87 done = wp->w_cline_row;
88 }
89 else
90 {
91 lnum = wp->w_topline;
92 done = 0;
93 }
94
95 for ( ; lnum <= wp->w_buffer->b_ml.ml_line_count; ++lnum)
96 {
97#ifdef FEAT_FOLDING
98 last = lnum;
99 folded = FALSE;
100 if (hasFoldingWin(wp, lnum, NULL, &last, TRUE, NULL))
101 {
102 n = 1;
103 folded = TRUE;
104 }
105 else
106#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100107 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108#ifdef FEAT_DIFF
109 if (lnum == wp->w_topline)
110 n = plines_win_nofill(wp, lnum, TRUE) + wp->w_topfill;
111 else
112#endif
113 n = plines_win(wp, lnum, TRUE);
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100114 if (lnum == wp->w_topline)
115 n = adjust_plines_for_skipcol(wp, n);
116 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117 if (
118#ifdef FEAT_FOLDING
119 lnum <= wp->w_cursor.lnum && last >= wp->w_cursor.lnum
120#else
121 lnum == wp->w_cursor.lnum
122#endif
123 )
124 {
125 wp->w_cline_row = done;
126 wp->w_cline_height = n;
127#ifdef FEAT_FOLDING
128 wp->w_cline_folded = folded;
129#endif
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100130 redraw_for_cursorline(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131 wp->w_valid |= (VALID_CROW|VALID_CHEIGHT);
132 }
133 if (done + n > wp->w_height)
134 break;
135 done += n;
136#ifdef FEAT_FOLDING
137 lnum = last;
138#endif
139 }
140
Bram Moolenaar85a20022019-12-21 18:25:54 +0100141 // wp->w_botline is the line that is just below the window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142 wp->w_botline = lnum;
143 wp->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
144
145 set_empty_rows(wp, done);
146}
147
148/*
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100149 * Redraw when w_cline_row changes and 'relativenumber' or 'cursorline' is
150 * set.
151 */
Bram Moolenaarbbb5f8d2019-01-31 13:22:32 +0100152 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100153redraw_for_cursorline(win_T *wp)
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100154{
155 if ((wp->w_p_rnu
156#ifdef FEAT_SYN_HL
157 || wp->w_p_cul
158#endif
159 )
160 && (wp->w_valid & VALID_CROW) == 0
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200161 && !pum_visible())
Bram Moolenaar90a99792018-09-12 21:52:18 +0200162 {
zeertzjqc20e46a2022-03-23 14:55:23 +0000163 // win_line() will redraw the number column and cursorline only.
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100164 redraw_win_later(wp, UPD_VALID);
Bram Moolenaar90a99792018-09-12 21:52:18 +0200165 }
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100166}
167
zeertzjq3e559cd2022-03-27 19:26:55 +0100168#ifdef FEAT_SYN_HL
169/*
170 * Redraw when w_virtcol changes and 'cursorcolumn' is set or 'cursorlineopt'
171 * contains "screenline".
172 */
173 static void
174redraw_for_cursorcolumn(win_T *wp)
175{
176 if ((wp->w_valid & VALID_VIRTCOL) == 0 && !pum_visible())
177 {
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100178 // When 'cursorcolumn' is set need to redraw with UPD_SOME_VALID.
zeertzjq3e559cd2022-03-27 19:26:55 +0100179 if (wp->w_p_cuc)
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100180 redraw_win_later(wp, UPD_SOME_VALID);
181 // When 'cursorlineopt' contains "screenline" need to redraw with
182 // UPD_VALID.
zeertzjq3e559cd2022-03-27 19:26:55 +0100183 else if (wp->w_p_cul && (wp->w_p_culopt_flags & CULOPT_SCRLINE))
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100184 redraw_win_later(wp, UPD_VALID);
zeertzjq3e559cd2022-03-27 19:26:55 +0100185 }
186}
187#endif
188
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100189/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190 * Update curwin->w_topline and redraw if necessary.
191 * Used to update the screen before printing a message.
192 */
193 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100194update_topline_redraw(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195{
196 update_topline();
197 if (must_redraw)
198 update_screen(0);
199}
200
201/*
202 * Update curwin->w_topline to move the cursor onto the screen.
203 */
204 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100205update_topline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206{
207 long line_count;
208 int halfheight;
209 int n;
210 linenr_T old_topline;
211#ifdef FEAT_DIFF
212 int old_topfill;
213#endif
214#ifdef FEAT_FOLDING
215 linenr_T lnum;
216#endif
217 int check_topline = FALSE;
218 int check_botline = FALSE;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +0100219 long *so_ptr = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100220 int save_so = *so_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221
Bram Moolenaar85a20022019-12-21 18:25:54 +0100222 // If there is no valid screen and when the window height is zero just use
223 // the cursor line.
Bram Moolenaard5d37532017-03-27 23:02:07 +0200224 if (!screen_valid(TRUE) || curwin->w_height == 0)
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200225 {
Bram Moolenaar3b6d57f2020-11-01 21:56:40 +0100226 check_cursor_lnum();
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200227 curwin->w_topline = curwin->w_cursor.lnum;
228 curwin->w_botline = curwin->w_topline;
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200229 curwin->w_scbind_pos = 1;
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200230 return;
231 }
232
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 check_cursor_moved(curwin);
234 if (curwin->w_valid & VALID_TOPLINE)
235 return;
236
Bram Moolenaar85a20022019-12-21 18:25:54 +0100237 // When dragging with the mouse, don't scroll that quickly
Bram Moolenaar9964e462007-05-05 17:54:07 +0000238 if (mouse_dragging > 0)
Bram Moolenaar375e3392019-01-31 18:26:10 +0100239 *so_ptr = mouse_dragging - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240
241 old_topline = curwin->w_topline;
242#ifdef FEAT_DIFF
243 old_topfill = curwin->w_topfill;
244#endif
245
246 /*
247 * If the buffer is empty, always set topline to 1.
248 */
Bram Moolenaar85a20022019-12-21 18:25:54 +0100249 if (BUFEMPTY()) // special case - file is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250 {
251 if (curwin->w_topline != 1)
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100252 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 curwin->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 curwin->w_botline = 2;
255 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256 curwin->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 }
258
259 /*
260 * If the cursor is above or near the top of the window, scroll the window
261 * to show the line the cursor is in, with 'scrolloff' context.
262 */
263 else
264 {
265 if (curwin->w_topline > 1)
266 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100267 // If the cursor is above topline, scrolling is always needed.
268 // If the cursor is far below topline and there is no folding,
269 // scrolling down is never needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 if (curwin->w_cursor.lnum < curwin->w_topline)
271 check_topline = TRUE;
272 else if (check_top_offset())
273 check_topline = TRUE;
274 }
275#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +0100276 // Check if there are more filler lines than allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 if (!check_topline && curwin->w_topfill > diff_check_fill(curwin,
278 curwin->w_topline))
279 check_topline = TRUE;
280#endif
281
282 if (check_topline)
283 {
284 halfheight = curwin->w_height / 2 - 1;
285 if (halfheight < 2)
286 halfheight = 2;
287
288#ifdef FEAT_FOLDING
289 if (hasAnyFolding(curwin))
290 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100291 // Count the number of logical lines between the cursor and
292 // topline + scrolloff (approximation of how much will be
293 // scrolled).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 n = 0;
295 for (lnum = curwin->w_cursor.lnum;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100296 lnum < curwin->w_topline + *so_ptr; ++lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297 {
298 ++n;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100299 // stop at end of file or when we know we are far off
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 if (lnum >= curbuf->b_ml.ml_line_count || n >= halfheight)
301 break;
302 (void)hasFolding(lnum, NULL, &lnum);
303 }
304 }
305 else
306#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +0100307 n = curwin->w_topline + *so_ptr - curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308
Bram Moolenaar85a20022019-12-21 18:25:54 +0100309 // If we weren't very close to begin with, we scroll to put the
310 // cursor in the middle of the window. Otherwise put the cursor
311 // near the top of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 if (n >= halfheight)
313 scroll_cursor_halfway(FALSE);
314 else
315 {
Bram Moolenaar1e015462005-09-25 22:16:38 +0000316 scroll_cursor_top(scrolljump_value(), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 check_botline = TRUE;
318 }
319 }
320
321 else
322 {
323#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100324 // Make sure topline is the first line of a fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
326#endif
327 check_botline = TRUE;
328 }
329 }
330
331 /*
332 * If the cursor is below the bottom of the window, scroll the window
333 * to put the cursor on the window.
334 * When w_botline is invalid, recompute it first, to avoid a redraw later.
335 * If w_botline was approximated, we might need a redraw later in a few
336 * cases, but we don't want to spend (a lot of) time recomputing w_botline
337 * for every small change.
338 */
339 if (check_botline)
340 {
341 if (!(curwin->w_valid & VALID_BOTLINE_AP))
342 validate_botline();
343
344 if (curwin->w_botline <= curbuf->b_ml.ml_line_count)
345 {
Bram Moolenaard4153d42008-11-15 15:06:17 +0000346 if (curwin->w_cursor.lnum < curwin->w_botline)
347 {
348 if (((long)curwin->w_cursor.lnum
Bram Moolenaar8088ae92022-06-20 11:38:17 +0100349 >= (long)curwin->w_botline - *so_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350#ifdef FEAT_FOLDING
351 || hasAnyFolding(curwin)
352#endif
353 ))
Bram Moolenaard4153d42008-11-15 15:06:17 +0000354 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 lineoff_T loff;
356
Bram Moolenaar85a20022019-12-21 18:25:54 +0100357 // Cursor is (a few lines) above botline, check if there are
358 // 'scrolloff' window lines below the cursor. If not, need to
359 // scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 n = curwin->w_empty_rows;
361 loff.lnum = curwin->w_cursor.lnum;
362#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100363 // In a fold go to its last line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 (void)hasFolding(loff.lnum, NULL, &loff.lnum);
365#endif
366#ifdef FEAT_DIFF
367 loff.fill = 0;
368 n += curwin->w_filler_rows;
369#endif
370 loff.height = 0;
371 while (loff.lnum < curwin->w_botline
372#ifdef FEAT_DIFF
373 && (loff.lnum + 1 < curwin->w_botline || loff.fill == 0)
374#endif
375 )
376 {
377 n += loff.height;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100378 if (n >= *so_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 break;
380 botline_forw(&loff);
381 }
Bram Moolenaar375e3392019-01-31 18:26:10 +0100382 if (n >= *so_ptr)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100383 // sufficient context, no need to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 check_botline = FALSE;
Bram Moolenaard4153d42008-11-15 15:06:17 +0000385 }
386 else
Bram Moolenaar85a20022019-12-21 18:25:54 +0100387 // sufficient context, no need to scroll
Bram Moolenaard4153d42008-11-15 15:06:17 +0000388 check_botline = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 }
390 if (check_botline)
391 {
392#ifdef FEAT_FOLDING
393 if (hasAnyFolding(curwin))
394 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100395 // Count the number of logical lines between the cursor and
396 // botline - scrolloff (approximation of how much will be
397 // scrolled).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 line_count = 0;
399 for (lnum = curwin->w_cursor.lnum;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100400 lnum >= curwin->w_botline - *so_ptr; --lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 {
402 ++line_count;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100403 // stop at end of file or when we know we are far off
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 if (lnum <= 0 || line_count > curwin->w_height + 1)
405 break;
406 (void)hasFolding(lnum, &lnum, NULL);
407 }
408 }
409 else
410#endif
411 line_count = curwin->w_cursor.lnum - curwin->w_botline
Bram Moolenaar8088ae92022-06-20 11:38:17 +0100412 + 1 + *so_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413 if (line_count <= curwin->w_height + 1)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000414 scroll_cursor_bot(scrolljump_value(), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 else
416 scroll_cursor_halfway(FALSE);
417 }
418 }
419 }
420 curwin->w_valid |= VALID_TOPLINE;
421
422 /*
423 * Need to redraw when topline changed.
424 */
425 if (curwin->w_topline != old_topline
426#ifdef FEAT_DIFF
427 || curwin->w_topfill != old_topfill
428#endif
429 )
430 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +0100431 dollar_vcol = -1;
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000432 if (curwin->w_skipcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 {
434 curwin->w_skipcol = 0;
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100435 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436 }
437 else
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100438 redraw_later(UPD_VALID);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100439 // May need to set w_skipcol when cursor in w_topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440 if (curwin->w_cursor.lnum == curwin->w_topline)
441 validate_cursor();
442 }
443
Bram Moolenaar375e3392019-01-31 18:26:10 +0100444 *so_ptr = save_so;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445}
446
447/*
Bram Moolenaar1e015462005-09-25 22:16:38 +0000448 * Return the scrolljump value to use for the current window.
449 * When 'scrolljump' is positive use it as-is.
450 * When 'scrolljump' is negative use it as a percentage of the window height.
451 */
452 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100453scrolljump_value(void)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000454{
455 if (p_sj >= 0)
456 return (int)p_sj;
457 return (curwin->w_height * -p_sj) / 100;
458}
459
460/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 * Return TRUE when there are not 'scrolloff' lines above the cursor for the
462 * current window.
463 */
464 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100465check_top_offset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466{
467 lineoff_T loff;
468 int n;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +0100469 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470
Bram Moolenaar375e3392019-01-31 18:26:10 +0100471 if (curwin->w_cursor.lnum < curwin->w_topline + so
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472#ifdef FEAT_FOLDING
473 || hasAnyFolding(curwin)
474#endif
475 )
476 {
477 loff.lnum = curwin->w_cursor.lnum;
478#ifdef FEAT_DIFF
479 loff.fill = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100480 n = curwin->w_topfill; // always have this context
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481#else
482 n = 0;
483#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +0100484 // Count the visible screen lines above the cursor line.
Bram Moolenaar375e3392019-01-31 18:26:10 +0100485 while (n < so)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486 {
487 topline_back(&loff);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100488 // Stop when included a line above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 if (loff.lnum < curwin->w_topline
490#ifdef FEAT_DIFF
491 || (loff.lnum == curwin->w_topline && loff.fill > 0)
492#endif
493 )
494 break;
495 n += loff.height;
496 }
Bram Moolenaar375e3392019-01-31 18:26:10 +0100497 if (n < so)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 return TRUE;
499 }
500 return FALSE;
501}
502
Bram Moolenaare24b4ab2022-09-16 20:51:14 +0100503/*
504 * Update w_curswant.
505 */
506 void
507update_curswant_force(void)
508{
509 validate_virtcol();
510 curwin->w_curswant = curwin->w_virtcol
511#ifdef FEAT_PROP_POPUP
512 - curwin->w_virtcol_first_char
513#endif
514 ;
515 curwin->w_set_curswant = FALSE;
516}
517
518/*
519 * Update w_curswant if w_set_curswant is set.
520 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100522update_curswant(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523{
524 if (curwin->w_set_curswant)
Bram Moolenaare24b4ab2022-09-16 20:51:14 +0100525 update_curswant_force();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526}
527
528/*
529 * Check if the cursor has moved. Set the w_valid flag accordingly.
530 */
531 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100532check_cursor_moved(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533{
534 if (wp->w_cursor.lnum != wp->w_valid_cursor.lnum)
535 {
536 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
Bram Moolenaara91cb982022-05-08 19:39:31 +0100537 |VALID_CHEIGHT|VALID_CROW|VALID_TOPLINE
538 |VALID_BOTLINE|VALID_BOTLINE_AP);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 wp->w_valid_cursor = wp->w_cursor;
540 wp->w_valid_leftcol = wp->w_leftcol;
541 }
542 else if (wp->w_cursor.col != wp->w_valid_cursor.col
543 || wp->w_leftcol != wp->w_valid_leftcol
Bram Moolenaar29ddebe2019-01-26 17:28:26 +0100544 || wp->w_cursor.coladd != wp->w_valid_cursor.coladd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 {
546 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL);
547 wp->w_valid_cursor.col = wp->w_cursor.col;
548 wp->w_valid_leftcol = wp->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 wp->w_valid_cursor.coladd = wp->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 }
551}
552
553/*
554 * Call this function when some window settings have changed, which require
555 * the cursor position, botline and topline to be recomputed and the window to
556 * be redrawn. E.g, when changing the 'wrap' option or folding.
557 */
558 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100559changed_window_setting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560{
561 changed_window_setting_win(curwin);
562}
563
564 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100565changed_window_setting_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566{
567 wp->w_lines_valid = 0;
568 changed_line_abv_curs_win(wp);
569 wp->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP|VALID_TOPLINE);
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100570 redraw_win_later(wp, UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571}
572
573/*
574 * Set wp->w_topline to a certain number.
575 */
576 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100577set_topline(win_T *wp, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578{
Bram Moolenaar04626c22021-09-01 16:02:07 +0200579#ifdef FEAT_DIFF
580 linenr_T prev_topline = wp->w_topline;
581#endif
582
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100584 // go to first of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
586#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +0100587 // Approximate the value of w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 wp->w_botline += lnum - wp->w_topline;
Bram Moolenaar23999d72020-12-23 14:36:00 +0100589 if (wp->w_botline > wp->w_buffer->b_ml.ml_line_count + 1)
590 wp->w_botline = wp->w_buffer->b_ml.ml_line_count + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 wp->w_topline = lnum;
Bram Moolenaard4153d42008-11-15 15:06:17 +0000592 wp->w_topline_was_set = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593#ifdef FEAT_DIFF
Bram Moolenaar04626c22021-09-01 16:02:07 +0200594 if (lnum != prev_topline)
595 // Keep the filler lines when the topline didn't change.
596 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597#endif
598 wp->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_TOPLINE);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100599 // Don't set VALID_TOPLINE here, 'scrolloff' needs to be checked.
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100600 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601}
602
603/*
604 * Call this function when the length of the cursor line (in screen
605 * characters) has changed, and the change is before the cursor.
606 * Need to take care of w_botline separately!
607 */
608 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100609changed_cline_bef_curs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610{
611 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
612 |VALID_CHEIGHT|VALID_TOPLINE);
613}
614
615 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100616changed_cline_bef_curs_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617{
618 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
619 |VALID_CHEIGHT|VALID_TOPLINE);
620}
621
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622/*
623 * Call this function when the length of a line (in screen characters) above
624 * the cursor have changed.
625 * Need to take care of w_botline separately!
626 */
627 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100628changed_line_abv_curs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629{
630 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL|VALID_CROW
631 |VALID_CHEIGHT|VALID_TOPLINE);
632}
633
634 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100635changed_line_abv_curs_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636{
637 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL|VALID_CROW
638 |VALID_CHEIGHT|VALID_TOPLINE);
639}
640
641/*
Bram Moolenaar326c5d32022-08-12 13:05:49 +0100642 * Display of line has changed for "buf", invalidate cursor position and
643 * w_botline.
644 */
645 void
646changed_line_display_buf(buf_T *buf)
647{
648 win_T *wp;
649
650 FOR_ALL_WINDOWS(wp)
651 if (wp->w_buffer == buf)
652 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
653 |VALID_CROW|VALID_CHEIGHT
654 |VALID_TOPLINE|VALID_BOTLINE|VALID_BOTLINE_AP);
655}
656
657/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 * Make sure the value of curwin->w_botline is valid.
659 */
660 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100661validate_botline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662{
Bram Moolenaar23999d72020-12-23 14:36:00 +0100663 validate_botline_win(curwin);
664}
665
666/*
667 * Make sure the value of wp->w_botline is valid.
668 */
669 void
670validate_botline_win(win_T *wp)
671{
672 if (!(wp->w_valid & VALID_BOTLINE))
673 comp_botline(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674}
675
676/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 * Mark curwin->w_botline as invalid (because of some change in the buffer).
678 */
679 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100680invalidate_botline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681{
682 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
683}
684
685 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100686invalidate_botline_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687{
688 wp->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
689}
690
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100692approximate_botline_win(
693 win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694{
695 wp->w_valid &= ~VALID_BOTLINE;
696}
697
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698/*
699 * Return TRUE if curwin->w_wrow and curwin->w_wcol are valid.
700 */
701 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100702cursor_valid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703{
704 check_cursor_moved(curwin);
705 return ((curwin->w_valid & (VALID_WROW|VALID_WCOL)) ==
706 (VALID_WROW|VALID_WCOL));
707}
708
709/*
710 * Validate cursor position. Makes sure w_wrow and w_wcol are valid.
711 * w_topline must be valid, you may need to call update_topline() first!
712 */
713 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100714validate_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715{
Bram Moolenaard4566c12022-09-24 21:06:39 +0100716 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 check_cursor_moved(curwin);
718 if ((curwin->w_valid & (VALID_WCOL|VALID_WROW)) != (VALID_WCOL|VALID_WROW))
719 curs_columns(TRUE);
720}
721
722#if defined(FEAT_GUI) || defined(PROTO)
723/*
724 * validate w_cline_row.
725 */
726 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100727validate_cline_row(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728{
729 /*
730 * First make sure that w_topline is valid (after moving the cursor).
731 */
732 update_topline();
733 check_cursor_moved(curwin);
734 if (!(curwin->w_valid & VALID_CROW))
Bram Moolenaar3f9be972014-12-13 21:09:57 +0100735 curs_rows(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736}
737#endif
738
739/*
740 * Compute wp->w_cline_row and wp->w_cline_height, based on the current value
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200741 * of wp->w_topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 */
743 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100744curs_rows(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745{
746 linenr_T lnum;
747 int i;
748 int all_invalid;
749 int valid;
750#ifdef FEAT_FOLDING
751 long fold_count;
752#endif
753
Bram Moolenaar85a20022019-12-21 18:25:54 +0100754 // Check if wp->w_lines[].wl_size is invalid
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 all_invalid = (!redrawing()
756 || wp->w_lines_valid == 0
757 || wp->w_lines[0].wl_lnum > wp->w_topline);
758 i = 0;
759 wp->w_cline_row = 0;
760 for (lnum = wp->w_topline; lnum < wp->w_cursor.lnum; ++i)
761 {
762 valid = FALSE;
763 if (!all_invalid && i < wp->w_lines_valid)
764 {
765 if (wp->w_lines[i].wl_lnum < lnum || !wp->w_lines[i].wl_valid)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100766 continue; // skip changed or deleted lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 if (wp->w_lines[i].wl_lnum == lnum)
768 {
769#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100770 // Check for newly inserted lines below this row, in which
771 // case we need to check for folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 if (!wp->w_buffer->b_mod_set
773 || wp->w_lines[i].wl_lastlnum < wp->w_cursor.lnum
774 || wp->w_buffer->b_mod_top
775 > wp->w_lines[i].wl_lastlnum + 1)
776#endif
777 valid = TRUE;
778 }
779 else if (wp->w_lines[i].wl_lnum > lnum)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100780 --i; // hold at inserted lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 }
782 if (valid
783#ifdef FEAT_DIFF
784 && (lnum != wp->w_topline || !wp->w_p_diff)
785#endif
786 )
787 {
788#ifdef FEAT_FOLDING
789 lnum = wp->w_lines[i].wl_lastlnum + 1;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100790 // Cursor inside folded lines, don't count this row
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 if (lnum > wp->w_cursor.lnum)
792 break;
793#else
794 ++lnum;
795#endif
796 wp->w_cline_row += wp->w_lines[i].wl_size;
797 }
798 else
799 {
800#ifdef FEAT_FOLDING
801 fold_count = foldedCount(wp, lnum, NULL);
802 if (fold_count)
803 {
804 lnum += fold_count;
805 if (lnum > wp->w_cursor.lnum)
806 break;
807 ++wp->w_cline_row;
808 }
809 else
810#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100811 {
812 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813#ifdef FEAT_DIFF
814 if (lnum == wp->w_topline)
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100815 n = plines_win_nofill(wp, lnum, TRUE) + wp->w_topfill;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 else
817#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100818 n = plines_win(wp, lnum, TRUE);
819 if (lnum++ == wp->w_topline)
820 n = adjust_plines_for_skipcol(wp, n);
821 wp->w_cline_row += n;
822 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 }
824 }
825
826 check_cursor_moved(wp);
827 if (!(wp->w_valid & VALID_CHEIGHT))
828 {
829 if (all_invalid
830 || i == wp->w_lines_valid
831 || (i < wp->w_lines_valid
832 && (!wp->w_lines[i].wl_valid
833 || wp->w_lines[i].wl_lnum != wp->w_cursor.lnum)))
834 {
835#ifdef FEAT_DIFF
836 if (wp->w_cursor.lnum == wp->w_topline)
837 wp->w_cline_height = plines_win_nofill(wp, wp->w_cursor.lnum,
838 TRUE) + wp->w_topfill;
839 else
840#endif
841 wp->w_cline_height = plines_win(wp, wp->w_cursor.lnum, TRUE);
842#ifdef FEAT_FOLDING
843 wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
844 NULL, NULL, TRUE, NULL);
845#endif
846 }
847 else if (i > wp->w_lines_valid)
848 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100849 // a line that is too long to fit on the last screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 wp->w_cline_height = 0;
851#ifdef FEAT_FOLDING
852 wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
853 NULL, NULL, TRUE, NULL);
854#endif
855 }
856 else
857 {
858 wp->w_cline_height = wp->w_lines[i].wl_size;
859#ifdef FEAT_FOLDING
860 wp->w_cline_folded = wp->w_lines[i].wl_folded;
861#endif
862 }
863 }
864
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100865 redraw_for_cursorline(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866 wp->w_valid |= VALID_CROW|VALID_CHEIGHT;
867
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868}
869
870/*
871 * Validate curwin->w_virtcol only.
872 */
873 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100874validate_virtcol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875{
876 validate_virtcol_win(curwin);
877}
878
879/*
880 * Validate wp->w_virtcol only.
881 */
882 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100883validate_virtcol_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884{
885 check_cursor_moved(wp);
886 if (!(wp->w_valid & VALID_VIRTCOL))
887 {
Bram Moolenaar04e0ed12022-09-10 20:00:56 +0100888#ifdef FEAT_PROP_POPUP
889 wp->w_virtcol_first_char = 0;
890#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 getvvcol(wp, &wp->w_cursor, NULL, &(wp->w_virtcol), NULL);
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000892#ifdef FEAT_SYN_HL
zeertzjq3e559cd2022-03-27 19:26:55 +0100893 redraw_for_cursorcolumn(wp);
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000894#endif
zeertzjq3e559cd2022-03-27 19:26:55 +0100895 wp->w_valid |= VALID_VIRTCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 }
897}
898
899/*
900 * Validate curwin->w_cline_height only.
901 */
Bram Moolenaar09dd2bb2019-12-14 18:42:15 +0100902 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100903validate_cheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904{
905 check_cursor_moved(curwin);
906 if (!(curwin->w_valid & VALID_CHEIGHT))
907 {
908#ifdef FEAT_DIFF
909 if (curwin->w_cursor.lnum == curwin->w_topline)
910 curwin->w_cline_height = plines_nofill(curwin->w_cursor.lnum)
911 + curwin->w_topfill;
912 else
913#endif
914 curwin->w_cline_height = plines(curwin->w_cursor.lnum);
915#ifdef FEAT_FOLDING
916 curwin->w_cline_folded = hasFolding(curwin->w_cursor.lnum, NULL, NULL);
917#endif
918 curwin->w_valid |= VALID_CHEIGHT;
919 }
920}
921
922/*
Bram Moolenaarc236c162008-07-13 17:41:49 +0000923 * Validate w_wcol and w_virtcol only.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 */
925 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100926validate_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927{
928 colnr_T off;
929 colnr_T col;
Bram Moolenaar6427c602010-02-03 17:43:07 +0100930 int width;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931
932 validate_virtcol();
933 if (!(curwin->w_valid & VALID_WCOL))
934 {
935 col = curwin->w_virtcol;
936 off = curwin_col_off();
937 col += off;
Bram Moolenaar02631462017-09-22 15:20:32 +0200938 width = curwin->w_width - off + curwin_col_off2();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939
Bram Moolenaar85a20022019-12-21 18:25:54 +0100940 // long line wrapping, adjust curwin->w_wrow
Bram Moolenaarc236c162008-07-13 17:41:49 +0000941 if (curwin->w_p_wrap
Bram Moolenaar02631462017-09-22 15:20:32 +0200942 && col >= (colnr_T)curwin->w_width
Bram Moolenaar6427c602010-02-03 17:43:07 +0100943 && width > 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100944 // use same formula as what is used in curs_columns()
Bram Moolenaar02631462017-09-22 15:20:32 +0200945 col -= ((col - curwin->w_width) / width + 1) * width;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000946 if (col > (int)curwin->w_leftcol)
947 col -= curwin->w_leftcol;
948 else
949 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 curwin->w_wcol = col;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000951
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 curwin->w_valid |= VALID_WCOL;
Bram Moolenaar4792a672020-11-15 21:11:18 +0100953#ifdef FEAT_PROP_POPUP
Bram Moolenaar6a076442020-11-15 20:32:58 +0100954 curwin->w_flags &= ~WFLAG_WCOL_OFF_ADDED;
Bram Moolenaar4792a672020-11-15 21:11:18 +0100955#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 }
957}
958
959/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200960 * Compute offset of a window, occupied by absolute or relative line number,
961 * fold column and sign column (these don't move when scrolling horizontally).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 */
963 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100964win_col_off(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965{
Bram Moolenaar64486672010-05-16 15:46:46 +0200966 return (((wp->w_p_nu || wp->w_p_rnu) ? number_width(wp) + 1 : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967#ifdef FEAT_CMDWIN
968 + (cmdwin_type == 0 || wp != curwin ? 0 : 1)
969#endif
970#ifdef FEAT_FOLDING
971 + wp->w_p_fdc
972#endif
973#ifdef FEAT_SIGNS
Bram Moolenaar95ec9d62016-08-12 18:29:59 +0200974 + (signcolumn_on(wp) ? 2 : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975#endif
976 );
977}
978
979 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100980curwin_col_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981{
982 return win_col_off(curwin);
983}
984
985/*
986 * Return the difference in column offset for the second screen line of a
Bram Moolenaar64486672010-05-16 15:46:46 +0200987 * wrapped line. It's 8 if 'number' or 'relativenumber' is on and 'n' is in
988 * 'cpoptions'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 */
990 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100991win_col_off2(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992{
Bram Moolenaar64486672010-05-16 15:46:46 +0200993 if ((wp->w_p_nu || wp->w_p_rnu) && vim_strchr(p_cpo, CPO_NUMCOL) != NULL)
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000994 return number_width(wp) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 return 0;
996}
997
998 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100999curwin_col_off2(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000{
1001 return win_col_off2(curwin);
1002}
1003
1004/*
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001005 * Compute curwin->w_wcol and curwin->w_virtcol.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006 * Also updates curwin->w_wrow and curwin->w_cline_row.
1007 * Also updates curwin->w_leftcol.
1008 */
1009 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001010curs_columns(
Bram Moolenaar85a20022019-12-21 18:25:54 +01001011 int may_scroll) // when TRUE, may scroll horizontally
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012{
1013 int diff;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001014 int extra; // offset for first screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 int off_left, off_right;
1016 int n;
1017 int p_lines;
1018 int width = 0;
1019 int textwidth;
1020 int new_leftcol;
1021 colnr_T startcol;
1022 colnr_T endcol;
1023 colnr_T prev_skipcol;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01001024 long so = get_scrolloff_value();
1025 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026
1027 /*
1028 * First make sure that w_topline is valid (after moving the cursor).
1029 */
Luuk van Baalfaf1d412022-09-19 16:45:29 +01001030 if (!skip_update_topline)
Luuk van Baal29ab5242022-09-11 16:59:53 +01001031 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032
1033 /*
1034 * Next make sure that w_cline_row is valid.
1035 */
1036 if (!(curwin->w_valid & VALID_CROW))
Bram Moolenaar3f9be972014-12-13 21:09:57 +01001037 curs_rows(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001039#ifdef FEAT_PROP_POPUP
1040 // will be set by getvvcol() but not reset
1041 curwin->w_virtcol_first_char = 0;
1042#endif
1043
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 /*
1045 * Compute the number of virtual columns.
1046 */
1047#ifdef FEAT_FOLDING
1048 if (curwin->w_cline_folded)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001049 // In a folded line the cursor is always in the first column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 startcol = curwin->w_virtcol = endcol = curwin->w_leftcol;
1051 else
1052#endif
1053 getvvcol(curwin, &curwin->w_cursor,
1054 &startcol, &(curwin->w_virtcol), &endcol);
1055
Bram Moolenaar85a20022019-12-21 18:25:54 +01001056 // remove '$' from change command when cursor moves onto it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 if (startcol > dollar_vcol)
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001058 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059
1060 extra = curwin_col_off();
1061 curwin->w_wcol = curwin->w_virtcol + extra;
1062 endcol += extra;
1063
1064 /*
1065 * Now compute w_wrow, counting screen lines from w_cline_row.
1066 */
1067 curwin->w_wrow = curwin->w_cline_row;
1068
Bram Moolenaar02631462017-09-22 15:20:32 +02001069 textwidth = curwin->w_width - extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 if (textwidth <= 0)
1071 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001072 // No room for text, put cursor in last char of window.
Bram Moolenaar30441bb2021-07-08 13:19:31 +02001073 // If not wrapping, the last non-empty line.
Bram Moolenaar02631462017-09-22 15:20:32 +02001074 curwin->w_wcol = curwin->w_width - 1;
Bram Moolenaar30441bb2021-07-08 13:19:31 +02001075 if (curwin->w_p_wrap)
1076 curwin->w_wrow = curwin->w_height - 1;
1077 else
1078 curwin->w_wrow = curwin->w_height - 1 - curwin->w_empty_rows;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02001080 else if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 {
1082 width = textwidth + curwin_col_off2();
1083
Bram Moolenaar85a20022019-12-21 18:25:54 +01001084 // long line wrapping, adjust curwin->w_wrow
Bram Moolenaar02631462017-09-22 15:20:32 +02001085 if (curwin->w_wcol >= curwin->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 {
Bram Moolenaar439b3ac2019-11-10 01:32:12 +01001087#ifdef FEAT_LINEBREAK
Bram Moolenaaree857022019-11-09 23:26:40 +01001088 char_u *sbr;
Bram Moolenaar439b3ac2019-11-10 01:32:12 +01001089#endif
Bram Moolenaaree857022019-11-09 23:26:40 +01001090
Bram Moolenaar85a20022019-12-21 18:25:54 +01001091 // this same formula is used in validate_cursor_col()
Bram Moolenaar02631462017-09-22 15:20:32 +02001092 n = (curwin->w_wcol - curwin->w_width) / width + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 curwin->w_wcol -= n * width;
1094 curwin->w_wrow += n;
1095
1096#ifdef FEAT_LINEBREAK
Bram Moolenaar85a20022019-12-21 18:25:54 +01001097 // When cursor wraps to first char of next line in Insert
1098 // mode, the 'showbreak' string isn't shown, backup to first
1099 // column
Bram Moolenaaree857022019-11-09 23:26:40 +01001100 sbr = get_showbreak_value(curwin);
1101 if (*sbr && *ml_get_cursor() == NUL
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +01001102 && curwin->w_wcol == vim_strsize(sbr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 curwin->w_wcol = 0;
1104#endif
1105 }
1106 }
1107
Bram Moolenaar85a20022019-12-21 18:25:54 +01001108 // No line wrapping: compute curwin->w_leftcol if scrolling is on and line
1109 // is not folded.
1110 // If scrolling is off, curwin->w_leftcol is assumed to be 0
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001111 else if (may_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112#ifdef FEAT_FOLDING
1113 && !curwin->w_cline_folded
1114#endif
1115 )
1116 {
Bram Moolenaarc9dc03f2022-09-12 17:51:07 +01001117#ifdef FEAT_PROP_POPUP
1118 if (curwin->w_virtcol_first_char > 0)
1119 {
1120 int cols = (curwin->w_width - extra);
1121 int rows = cols > 0 ? curwin->w_virtcol_first_char / cols : 1;
1122
1123 // each "above" text prop shifts the text one row down
1124 curwin->w_wrow += rows;
1125 curwin->w_wcol -= rows * cols;
1126 endcol -= rows * cols;
1127 curwin->w_cline_height = rows + 1;
1128 }
1129#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 /*
1131 * If Cursor is left of the screen, scroll rightwards.
1132 * If Cursor is right of the screen, scroll leftwards
1133 * If we get closer to the edge than 'sidescrolloff', scroll a little
1134 * extra
1135 */
Bram Moolenaar375e3392019-01-31 18:26:10 +01001136 off_left = (int)startcol - (int)curwin->w_leftcol - siso;
Bram Moolenaar02631462017-09-22 15:20:32 +02001137 off_right = (int)endcol - (int)(curwin->w_leftcol + curwin->w_width
Bram Moolenaar375e3392019-01-31 18:26:10 +01001138 - siso) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 if (off_left < 0 || off_right > 0)
1140 {
1141 if (off_left < 0)
1142 diff = -off_left;
1143 else
1144 diff = off_right;
1145
Bram Moolenaar85a20022019-12-21 18:25:54 +01001146 // When far off or not enough room on either side, put cursor in
1147 // middle of window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 if (p_ss == 0 || diff >= textwidth / 2 || off_right >= off_left)
1149 new_leftcol = curwin->w_wcol - extra - textwidth / 2;
1150 else
1151 {
1152 if (diff < p_ss)
1153 diff = p_ss;
1154 if (off_left < 0)
1155 new_leftcol = curwin->w_leftcol - diff;
1156 else
1157 new_leftcol = curwin->w_leftcol + diff;
1158 }
1159 if (new_leftcol < 0)
1160 new_leftcol = 0;
1161 if (new_leftcol != (int)curwin->w_leftcol)
1162 {
1163 curwin->w_leftcol = new_leftcol;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001164 // screen has to be redrawn with new curwin->w_leftcol
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001165 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 }
1167 }
1168 curwin->w_wcol -= curwin->w_leftcol;
1169 }
1170 else if (curwin->w_wcol > (int)curwin->w_leftcol)
1171 curwin->w_wcol -= curwin->w_leftcol;
1172 else
1173 curwin->w_wcol = 0;
1174
1175#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01001176 // Skip over filler lines. At the top use w_topfill, there
1177 // may be some filler lines above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 if (curwin->w_cursor.lnum == curwin->w_topline)
1179 curwin->w_wrow += curwin->w_topfill;
1180 else
1181 curwin->w_wrow += diff_check_fill(curwin, curwin->w_cursor.lnum);
1182#endif
1183
1184 prev_skipcol = curwin->w_skipcol;
1185
1186 p_lines = 0;
Bram Moolenaar375e3392019-01-31 18:26:10 +01001187
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 if ((curwin->w_wrow >= curwin->w_height
1189 || ((prev_skipcol > 0
Bram Moolenaar375e3392019-01-31 18:26:10 +01001190 || curwin->w_wrow + so >= curwin->w_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 && (p_lines =
1192#ifdef FEAT_DIFF
1193 plines_win_nofill
1194#else
1195 plines_win
1196#endif
1197 (curwin, curwin->w_cursor.lnum, FALSE))
1198 - 1 >= curwin->w_height))
1199 && curwin->w_height != 0
1200 && curwin->w_cursor.lnum == curwin->w_topline
1201 && width > 0
Bram Moolenaar4033c552017-09-16 20:54:51 +02001202 && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001204 // Cursor past end of screen. Happens with a single line that does
1205 // not fit on screen. Find a skipcol to show the text around the
1206 // cursor. Avoid scrolling all the time. compute value of "extra":
1207 // 1: Less than 'scrolloff' lines above
1208 // 2: Less than 'scrolloff' lines below
1209 // 3: both of them
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 extra = 0;
Bram Moolenaar375e3392019-01-31 18:26:10 +01001211 if (curwin->w_skipcol + so * width > curwin->w_virtcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 extra = 1;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001213 // Compute last display line of the buffer line that we want at the
1214 // bottom of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 if (p_lines == 0)
1216 p_lines = plines_win(curwin, curwin->w_cursor.lnum, FALSE);
1217 --p_lines;
Bram Moolenaar375e3392019-01-31 18:26:10 +01001218 if (p_lines > curwin->w_wrow + so)
1219 n = curwin->w_wrow + so;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220 else
1221 n = p_lines;
Bram Moolenaar8f33ebf2021-02-10 21:10:12 +01001222 if ((colnr_T)n >= curwin->w_height + curwin->w_skipcol / width - so)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 extra += 2;
1224
Bram Moolenaar8f33ebf2021-02-10 21:10:12 +01001225 if (extra == 3 || p_lines <= so * 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001227 // not enough room for 'scrolloff', put cursor in the middle
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 n = curwin->w_virtcol / width;
1229 if (n > curwin->w_height / 2)
1230 n -= curwin->w_height / 2;
1231 else
1232 n = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001233 // don't skip more than necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 if (n > p_lines - curwin->w_height + 1)
1235 n = p_lines - curwin->w_height + 1;
1236 curwin->w_skipcol = n * width;
1237 }
1238 else if (extra == 1)
1239 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001240 // less than 'scrolloff' lines above, decrease skipcol
Bram Moolenaar375e3392019-01-31 18:26:10 +01001241 extra = (curwin->w_skipcol + so * width - curwin->w_virtcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 + width - 1) / width;
1243 if (extra > 0)
1244 {
1245 if ((colnr_T)(extra * width) > curwin->w_skipcol)
1246 extra = curwin->w_skipcol / width;
1247 curwin->w_skipcol -= extra * width;
1248 }
1249 }
1250 else if (extra == 2)
1251 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001252 // less than 'scrolloff' lines below, increase skipcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 endcol = (n - curwin->w_height + 1) * width;
1254 while (endcol > curwin->w_virtcol)
1255 endcol -= width;
1256 if (endcol > curwin->w_skipcol)
1257 curwin->w_skipcol = endcol;
1258 }
1259
1260 curwin->w_wrow -= curwin->w_skipcol / width;
1261 if (curwin->w_wrow >= curwin->w_height)
1262 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001263 // small window, make sure cursor is in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 extra = curwin->w_wrow - curwin->w_height + 1;
1265 curwin->w_skipcol += extra * width;
1266 curwin->w_wrow -= extra;
1267 }
1268
1269 extra = ((int)prev_skipcol - (int)curwin->w_skipcol) / width;
1270 if (extra > 0)
1271 win_ins_lines(curwin, 0, extra, FALSE, FALSE);
1272 else if (extra < 0)
Bram Moolenaarcfce7172017-08-17 20:31:48 +02001273 win_del_lines(curwin, 0, -extra, FALSE, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 }
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001275 else if (!curwin->w_p_sms)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 curwin->w_skipcol = 0;
1277 if (prev_skipcol != curwin->w_skipcol)
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001278 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001280#ifdef FEAT_SYN_HL
zeertzjq3e559cd2022-03-27 19:26:55 +01001281 redraw_for_cursorcolumn(curwin);
Bram Moolenaarb6798752014-03-27 12:11:48 +01001282#endif
Bram Moolenaare52e0c82020-02-28 22:20:10 +01001283#if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
1284 if (popup_is_popup(curwin) && curbuf->b_term != NULL)
1285 {
1286 curwin->w_wrow += popup_top_extra(curwin);
1287 curwin->w_wcol += popup_left_extra(curwin);
Bram Moolenaar6a076442020-11-15 20:32:58 +01001288 curwin->w_flags |= WFLAG_WCOL_OFF_ADDED + WFLAG_WROW_OFF_ADDED;
Bram Moolenaare52e0c82020-02-28 22:20:10 +01001289 }
Bram Moolenaar6a076442020-11-15 20:32:58 +01001290 else
1291 curwin->w_flags &= ~(WFLAG_WCOL_OFF_ADDED + WFLAG_WROW_OFF_ADDED);
Bram Moolenaare52e0c82020-02-28 22:20:10 +01001292#endif
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001293
Bram Moolenaar08f23632019-11-16 14:19:33 +01001294 // now w_leftcol is valid, avoid check_cursor_moved() thinking otherwise
1295 curwin->w_valid_leftcol = curwin->w_leftcol;
1296
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 curwin->w_valid |= VALID_WCOL|VALID_WROW|VALID_VIRTCOL;
1298}
1299
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001300#if (defined(FEAT_EVAL) || defined(FEAT_PROP_POPUP)) || defined(PROTO)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001301/*
1302 * Compute the screen position of text character at "pos" in window "wp"
1303 * The resulting values are one-based, zero when character is not visible.
1304 */
Bram Moolenaar12034e22019-08-25 22:25:02 +02001305 void
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001306textpos2screenpos(
1307 win_T *wp,
1308 pos_T *pos,
1309 int *rowp, // screen row
1310 int *scolp, // start screen column
1311 int *ccolp, // cursor screen column
1312 int *ecolp) // end screen column
1313{
1314 colnr_T scol = 0, ccol = 0, ecol = 0;
1315 int row = 0;
1316 int rowoff = 0;
1317 colnr_T coloff = 0;
1318
Bram Moolenaar189663b2021-07-21 18:04:56 +02001319 if (pos->lnum >= wp->w_topline && pos->lnum <= wp->w_botline)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001320 {
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001321 colnr_T off;
1322 colnr_T col;
1323 int width;
1324 linenr_T lnum = pos->lnum;
1325#ifdef FEAT_FOLDING
1326 int is_folded;
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001327
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001328 is_folded = hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
1329#endif
1330 row = plines_m_win(wp, wp->w_topline, lnum - 1) + 1;
1331#ifdef FEAT_FOLDING
1332 if (is_folded)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001333 {
Bram Moolenaar7924a172022-01-24 16:15:15 +00001334 row += W_WINROW(wp);
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001335 coloff = wp->w_wincol + 1;
Bram Moolenaar7924a172022-01-24 16:15:15 +00001336 }
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001337 else
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001338#endif
1339 {
1340 getvcol(wp, pos, &scol, &ccol, &ecol);
1341
1342 // similar to what is done in validate_cursor_col()
1343 col = scol;
1344 off = win_col_off(wp);
1345 col += off;
1346 width = wp->w_width - off + win_col_off2(wp);
1347
1348 // long line wrapping, adjust row
1349 if (wp->w_p_wrap
1350 && col >= (colnr_T)wp->w_width
1351 && width > 0)
1352 {
1353 // use same formula as what is used in curs_columns()
1354 rowoff = ((col - wp->w_width) / width + 1);
1355 col -= rowoff * width;
1356 }
1357 col -= wp->w_leftcol;
1358 if (col >= wp->w_width)
1359 col = -1;
1360 if (col >= 0 && row + rowoff <= wp->w_height)
1361 {
1362 coloff = col - scol + wp->w_wincol + 1;
1363 row += W_WINROW(wp);
1364 }
1365 else
1366 // character is left, right or below of the window
1367 row = rowoff = scol = ccol = ecol = 0;
1368 }
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001369 }
Bram Moolenaar7924a172022-01-24 16:15:15 +00001370 *rowp = row + rowoff;
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001371 *scolp = scol + coloff;
1372 *ccolp = ccol + coloff;
1373 *ecolp = ecol + coloff;
1374}
Bram Moolenaar12034e22019-08-25 22:25:02 +02001375#endif
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001376
Bram Moolenaar12034e22019-08-25 22:25:02 +02001377#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001378/*
1379 * "screenpos({winid}, {lnum}, {col})" function
1380 */
1381 void
1382f_screenpos(typval_T *argvars UNUSED, typval_T *rettv)
1383{
1384 dict_T *dict;
1385 win_T *wp;
1386 pos_T pos;
1387 int row = 0;
1388 int scol = 0, ccol = 0, ecol = 0;
1389
Bram Moolenaar93a10962022-06-16 11:42:09 +01001390 if (rettv_dict_alloc(rettv) == FAIL)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001391 return;
1392 dict = rettv->vval.v_dict;
1393
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02001394 if (in_vim9script()
1395 && (check_for_number_arg(argvars, 0) == FAIL
1396 || check_for_number_arg(argvars, 1) == FAIL
1397 || check_for_number_arg(argvars, 2) == FAIL))
1398 return;
1399
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001400 wp = find_win_by_nr_or_id(&argvars[0]);
1401 if (wp == NULL)
1402 return;
1403
1404 pos.lnum = tv_get_number(&argvars[1]);
1405 pos.col = tv_get_number(&argvars[2]) - 1;
1406 pos.coladd = 0;
1407 textpos2screenpos(wp, &pos, &row, &scol, &ccol, &ecol);
1408
1409 dict_add_number(dict, "row", row);
1410 dict_add_number(dict, "col", scol);
1411 dict_add_number(dict, "curscol", ccol);
1412 dict_add_number(dict, "endcol", ecol);
1413}
Bram Moolenaar5a6ec102022-05-27 21:58:00 +01001414
1415/*
1416 * "virtcol2col({winid}, {lnum}, {col})" function
1417 */
1418 void
1419f_virtcol2col(typval_T *argvars UNUSED, typval_T *rettv)
1420{
1421 win_T *wp;
1422 linenr_T lnum;
1423 int screencol;
1424 int error = FALSE;
1425
1426 rettv->vval.v_number = -1;
1427
1428 if (check_for_number_arg(argvars, 0) == FAIL
1429 || check_for_number_arg(argvars, 1) == FAIL
1430 || check_for_number_arg(argvars, 2) == FAIL)
1431 return;
1432
1433 wp = find_win_by_nr_or_id(&argvars[0]);
1434 if (wp == NULL)
1435 return;
1436
1437 lnum = tv_get_number_chk(&argvars[1], &error);
1438 if (error || lnum < 0 || lnum > wp->w_buffer->b_ml.ml_line_count)
1439 return;
1440
1441 screencol = tv_get_number_chk(&argvars[2], &error);
1442 if (error || screencol < 0)
1443 return;
1444
1445 rettv->vval.v_number = vcol2col(wp, lnum, screencol);
1446}
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001447#endif
1448
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449/*
1450 * Scroll the current window down by "line_count" logical lines. "CTRL-Y"
1451 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001453scrolldown(
1454 long line_count,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001455 int byfold UNUSED) // TRUE: count a closed fold as one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456{
Bram Moolenaar85a20022019-12-21 18:25:54 +01001457 long done = 0; // total # of physical lines done
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458 int wrow;
1459 int moved = FALSE;
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001460 int width1 = 0;
1461 int width2 = 0;
1462
1463 if (curwin->w_p_wrap && curwin->w_p_sms)
1464 {
1465 width1 = curwin->w_width - curwin_col_off();
1466 width2 = width1 - curwin_col_off2();
1467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468
1469#ifdef FEAT_FOLDING
1470 linenr_T first;
1471
Bram Moolenaar85a20022019-12-21 18:25:54 +01001472 // Make sure w_topline is at the first of a sequence of folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1474#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +01001475 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 while (line_count-- > 0)
1477 {
1478#ifdef FEAT_DIFF
Bram Moolenaarfa316dd2009-11-03 15:23:14 +00001479 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)
1480 && curwin->w_topfill < curwin->w_height - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 {
1482 ++curwin->w_topfill;
1483 ++done;
1484 }
1485 else
1486#endif
1487 {
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001488 if (curwin->w_topline == 1 && curwin->w_skipcol < width1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 break;
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001490 if (curwin->w_p_wrap && curwin->w_p_sms
1491 && curwin->w_skipcol >= width1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 {
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001493 if (curwin->w_skipcol >= width1 + width2)
1494 curwin->w_skipcol -= width2;
1495 else
1496 curwin->w_skipcol -= width1;
1497 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 ++done;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 }
1500 else
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001501 {
1502 --curwin->w_topline;
1503 curwin->w_skipcol = 0;
1504#ifdef FEAT_DIFF
1505 curwin->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001507#ifdef FEAT_FOLDING
1508 // A sequence of folded lines only counts for one logical line
1509 if (hasFolding(curwin->w_topline, &first, NULL))
1510 {
1511 ++done;
1512 if (!byfold)
1513 line_count -= curwin->w_topline - first - 1;
1514 curwin->w_botline -= curwin->w_topline - first;
1515 curwin->w_topline = first;
1516 }
1517 else
1518#endif
1519 if (curwin->w_p_wrap && curwin->w_p_sms)
1520 {
1521 int size = win_linetabsize(curwin, curwin->w_topline,
1522 ml_get(curwin->w_topline), (colnr_T)MAXCOL);
1523 if (size > width1)
1524 {
1525 curwin->w_skipcol = width1;
1526 size -= width1;
1527 redraw_later(UPD_NOT_VALID);
1528 }
1529 while (size > width2)
1530 {
1531 curwin->w_skipcol += width2;
1532 size -= width2;
1533 }
1534 ++done;
1535 }
1536 else
1537 done += PLINES_NOFILL(curwin->w_topline);
1538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001540 --curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 invalidate_botline();
1542 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001543 curwin->w_wrow += done; // keep w_wrow updated
1544 curwin->w_cline_row += done; // keep w_cline_row updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545
1546#ifdef FEAT_DIFF
1547 if (curwin->w_cursor.lnum == curwin->w_topline)
1548 curwin->w_cline_row = 0;
1549 check_topfill(curwin, TRUE);
1550#endif
1551
1552 /*
1553 * Compute the row number of the last row of the cursor line
1554 * and move the cursor onto the displayed part of the window.
1555 */
1556 wrow = curwin->w_wrow;
Bram Moolenaar4033c552017-09-16 20:54:51 +02001557 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 {
1559 validate_virtcol();
1560 validate_cheight();
1561 wrow += curwin->w_cline_height - 1 -
Bram Moolenaar02631462017-09-22 15:20:32 +02001562 curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 }
1564 while (wrow >= curwin->w_height && curwin->w_cursor.lnum > 1)
1565 {
1566#ifdef FEAT_FOLDING
1567 if (hasFolding(curwin->w_cursor.lnum, &first, NULL))
1568 {
1569 --wrow;
1570 if (first == 1)
1571 curwin->w_cursor.lnum = 1;
1572 else
1573 curwin->w_cursor.lnum = first - 1;
1574 }
1575 else
1576#endif
1577 wrow -= plines(curwin->w_cursor.lnum--);
1578 curwin->w_valid &=
1579 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1580 moved = TRUE;
1581 }
1582 if (moved)
1583 {
1584#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01001585 // Move cursor to first line of closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 foldAdjustCursor();
1587#endif
1588 coladvance(curwin->w_curswant);
1589 }
1590}
1591
1592/*
1593 * Scroll the current window up by "line_count" logical lines. "CTRL-E"
1594 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001596scrollup(
1597 long line_count,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001598 int byfold UNUSED) // TRUE: count a closed fold as one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599{
1600#if defined(FEAT_FOLDING) || defined(FEAT_DIFF)
1601 linenr_T lnum;
1602
1603 if (
1604# ifdef FEAT_FOLDING
1605 (byfold && hasAnyFolding(curwin))
1606# ifdef FEAT_DIFF
1607 ||
1608# endif
1609# endif
1610# ifdef FEAT_DIFF
1611 curwin->w_p_diff
1612# endif
1613 )
1614 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001615 // count each sequence of folded lines as one logical line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 lnum = curwin->w_topline;
1617 while (line_count--)
1618 {
1619# ifdef FEAT_DIFF
1620 if (curwin->w_topfill > 0)
1621 --curwin->w_topfill;
1622 else
1623# endif
1624 {
1625# ifdef FEAT_FOLDING
1626 if (byfold)
1627 (void)hasFolding(lnum, NULL, &lnum);
1628# endif
1629 if (lnum >= curbuf->b_ml.ml_line_count)
1630 break;
1631 ++lnum;
1632# ifdef FEAT_DIFF
1633 curwin->w_topfill = diff_check_fill(curwin, lnum);
1634# endif
1635 }
1636 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001637 // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 curwin->w_botline += lnum - curwin->w_topline;
1639 curwin->w_topline = lnum;
1640 }
1641 else
1642#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001643 if (curwin->w_p_wrap && curwin->w_p_sms)
1644 {
1645 int off1 = curwin_col_off();
1646 int off2 = off1 + curwin_col_off2();
1647 int add;
1648 int size = win_linetabsize(curwin, curwin->w_topline,
1649 ml_get(curwin->w_topline), (colnr_T)MAXCOL);
1650 linenr_T prev_topline = curwin->w_topline;
1651
1652 // 'smoothscroll': increase "w_skipcol" until it goes over the end of
1653 // the line, then advance to the next line.
1654 for (int todo = line_count; todo > 0; --todo)
1655 {
1656 add = curwin->w_width - (curwin->w_skipcol > 0 ? off2 : off1);
1657 curwin->w_skipcol += add;
1658 if (curwin->w_skipcol >= size)
1659 {
1660 if (curwin->w_topline == curbuf->b_ml.ml_line_count)
1661 {
1662 curwin->w_skipcol -= add;
1663 break;
1664 }
1665 ++curwin->w_topline;
1666 ++curwin->w_botline; // approximate w_botline
1667 curwin->w_skipcol = 0;
1668 if (todo > 1)
1669 size = win_linetabsize(curwin, curwin->w_topline,
1670 ml_get(curwin->w_topline), (colnr_T)MAXCOL);
1671 }
1672 }
1673 if (curwin->w_topline == prev_topline)
1674 // need to redraw even though w_topline didn't change
1675 redraw_later(UPD_NOT_VALID);
1676 }
1677 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 {
1679 curwin->w_topline += line_count;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001680 curwin->w_botline += line_count; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 }
1682
1683 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
1684 curwin->w_topline = curbuf->b_ml.ml_line_count;
1685 if (curwin->w_botline > curbuf->b_ml.ml_line_count + 1)
1686 curwin->w_botline = curbuf->b_ml.ml_line_count + 1;
1687
1688#ifdef FEAT_DIFF
1689 check_topfill(curwin, FALSE);
1690#endif
1691
1692#ifdef FEAT_FOLDING
1693 if (hasAnyFolding(curwin))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001694 // Make sure w_topline is at the first of a sequence of folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1696#endif
1697
1698 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1699 if (curwin->w_cursor.lnum < curwin->w_topline)
1700 {
1701 curwin->w_cursor.lnum = curwin->w_topline;
1702 curwin->w_valid &=
1703 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1704 coladvance(curwin->w_curswant);
1705 }
1706}
1707
1708#ifdef FEAT_DIFF
1709/*
1710 * Don't end up with too many filler lines in the window.
1711 */
1712 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001713check_topfill(
1714 win_T *wp,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001715 int down) // when TRUE scroll down when not enough space
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716{
1717 int n;
1718
1719 if (wp->w_topfill > 0)
1720 {
1721 n = plines_win_nofill(wp, wp->w_topline, TRUE);
1722 if (wp->w_topfill + n > wp->w_height)
1723 {
1724 if (down && wp->w_topline > 1)
1725 {
1726 --wp->w_topline;
1727 wp->w_topfill = 0;
1728 }
1729 else
1730 {
1731 wp->w_topfill = wp->w_height - n;
1732 if (wp->w_topfill < 0)
1733 wp->w_topfill = 0;
1734 }
1735 }
1736 }
1737}
1738
1739/*
1740 * Use as many filler lines as possible for w_topline. Make sure w_topline
1741 * is still visible.
1742 */
1743 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001744max_topfill(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745{
1746 int n;
1747
1748 n = plines_nofill(curwin->w_topline);
1749 if (n >= curwin->w_height)
1750 curwin->w_topfill = 0;
1751 else
1752 {
1753 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
1754 if (curwin->w_topfill + n > curwin->w_height)
1755 curwin->w_topfill = curwin->w_height - n;
1756 }
1757}
1758#endif
1759
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760/*
1761 * Scroll the screen one line down, but don't do it if it would move the
1762 * cursor off the screen.
1763 */
1764 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001765scrolldown_clamp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766{
1767 int end_row;
1768#ifdef FEAT_DIFF
1769 int can_fill = (curwin->w_topfill
1770 < diff_check_fill(curwin, curwin->w_topline));
1771#endif
1772
1773 if (curwin->w_topline <= 1
1774#ifdef FEAT_DIFF
1775 && !can_fill
1776#endif
1777 )
1778 return;
1779
Bram Moolenaar85a20022019-12-21 18:25:54 +01001780 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781
1782 /*
1783 * Compute the row number of the last row of the cursor line
1784 * and make sure it doesn't go off the screen. Make sure the cursor
1785 * doesn't go past 'scrolloff' lines from the screen end.
1786 */
1787 end_row = curwin->w_wrow;
1788#ifdef FEAT_DIFF
1789 if (can_fill)
1790 ++end_row;
1791 else
1792 end_row += plines_nofill(curwin->w_topline - 1);
1793#else
1794 end_row += plines(curwin->w_topline - 1);
1795#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001796 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 {
1798 validate_cheight();
1799 validate_virtcol();
1800 end_row += curwin->w_cline_height - 1 -
Bram Moolenaar02631462017-09-22 15:20:32 +02001801 curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 }
Bram Moolenaar375e3392019-01-31 18:26:10 +01001803 if (end_row < curwin->w_height - get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 {
1805#ifdef FEAT_DIFF
1806 if (can_fill)
1807 {
1808 ++curwin->w_topfill;
1809 check_topfill(curwin, TRUE);
1810 }
1811 else
1812 {
1813 --curwin->w_topline;
1814 curwin->w_topfill = 0;
1815 }
1816#else
1817 --curwin->w_topline;
1818#endif
1819#ifdef FEAT_FOLDING
Bram Moolenaarcde88542015-08-11 19:14:00 +02001820 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +01001822 --curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1824 }
1825}
1826
1827/*
1828 * Scroll the screen one line up, but don't do it if it would move the cursor
1829 * off the screen.
1830 */
1831 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001832scrollup_clamp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833{
1834 int start_row;
1835
1836 if (curwin->w_topline == curbuf->b_ml.ml_line_count
1837#ifdef FEAT_DIFF
1838 && curwin->w_topfill == 0
1839#endif
1840 )
1841 return;
1842
Bram Moolenaar85a20022019-12-21 18:25:54 +01001843 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844
1845 /*
1846 * Compute the row number of the first row of the cursor line
1847 * and make sure it doesn't go off the screen. Make sure the cursor
1848 * doesn't go before 'scrolloff' lines from the screen start.
1849 */
1850#ifdef FEAT_DIFF
1851 start_row = curwin->w_wrow - plines_nofill(curwin->w_topline)
1852 - curwin->w_topfill;
1853#else
1854 start_row = curwin->w_wrow - plines(curwin->w_topline);
1855#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001856 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 {
1858 validate_virtcol();
Bram Moolenaar02631462017-09-22 15:20:32 +02001859 start_row -= curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 }
Bram Moolenaar375e3392019-01-31 18:26:10 +01001861 if (start_row >= get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 {
1863#ifdef FEAT_DIFF
1864 if (curwin->w_topfill > 0)
1865 --curwin->w_topfill;
1866 else
1867#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001868 {
1869#ifdef FEAT_FOLDING
1870 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
1871#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 ++curwin->w_topline;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001873 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001874 ++curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1876 }
1877}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878
1879/*
1880 * Add one line above "lp->lnum". This can be a filler line, a closed fold or
1881 * a (wrapped) text line. Uses and sets "lp->fill".
1882 * Returns the height of the added line in "lp->height".
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01001883 * Lines above the first one are incredibly high: MAXCOL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 */
1885 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001886topline_back(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887{
1888#ifdef FEAT_DIFF
1889 if (lp->fill < diff_check_fill(curwin, lp->lnum))
1890 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001891 // Add a filler line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 ++lp->fill;
1893 lp->height = 1;
1894 }
1895 else
1896#endif
1897 {
1898 --lp->lnum;
1899#ifdef FEAT_DIFF
1900 lp->fill = 0;
1901#endif
1902 if (lp->lnum < 1)
1903 lp->height = MAXCOL;
1904 else
1905#ifdef FEAT_FOLDING
1906 if (hasFolding(lp->lnum, &lp->lnum, NULL))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001907 // Add a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 lp->height = 1;
1909 else
1910#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02001911 lp->height = PLINES_NOFILL(lp->lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 }
1913}
1914
1915/*
1916 * Add one line below "lp->lnum". This can be a filler line, a closed fold or
1917 * a (wrapped) text line. Uses and sets "lp->fill".
1918 * Returns the height of the added line in "lp->height".
1919 * Lines below the last one are incredibly high.
1920 */
1921 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001922botline_forw(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923{
1924#ifdef FEAT_DIFF
1925 if (lp->fill < diff_check_fill(curwin, lp->lnum + 1))
1926 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001927 // Add a filler line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 ++lp->fill;
1929 lp->height = 1;
1930 }
1931 else
1932#endif
1933 {
1934 ++lp->lnum;
1935#ifdef FEAT_DIFF
1936 lp->fill = 0;
1937#endif
1938 if (lp->lnum > curbuf->b_ml.ml_line_count)
1939 lp->height = MAXCOL;
1940 else
1941#ifdef FEAT_FOLDING
1942 if (hasFolding(lp->lnum, NULL, &lp->lnum))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001943 // Add a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 lp->height = 1;
1945 else
1946#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02001947 lp->height = PLINES_NOFILL(lp->lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 }
1949}
1950
1951#ifdef FEAT_DIFF
1952/*
1953 * Switch from including filler lines below lp->lnum to including filler
1954 * lines above loff.lnum + 1. This keeps pointing to the same line.
1955 * When there are no filler lines nothing changes.
1956 */
1957 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001958botline_topline(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959{
1960 if (lp->fill > 0)
1961 {
1962 ++lp->lnum;
1963 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
1964 }
1965}
1966
1967/*
1968 * Switch from including filler lines above lp->lnum to including filler
1969 * lines below loff.lnum - 1. This keeps pointing to the same line.
1970 * When there are no filler lines nothing changes.
1971 */
1972 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001973topline_botline(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974{
1975 if (lp->fill > 0)
1976 {
1977 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
1978 --lp->lnum;
1979 }
1980}
1981#endif
1982
1983/*
1984 * Recompute topline to put the cursor at the top of the window.
1985 * Scroll at least "min_scroll" lines.
1986 * If "always" is TRUE, always set topline (for "zt").
1987 */
1988 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001989scroll_cursor_top(int min_scroll, int always)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990{
1991 int scrolled = 0;
1992 int extra = 0;
1993 int used;
1994 int i;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001995 linenr_T top; // just above displayed lines
1996 linenr_T bot; // just below displayed lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 linenr_T old_topline = curwin->w_topline;
1998#ifdef FEAT_DIFF
1999 linenr_T old_topfill = curwin->w_topfill;
2000#endif
2001 linenr_T new_topline;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002002 int off = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 if (mouse_dragging > 0)
2005 off = mouse_dragging - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006
2007 /*
2008 * Decrease topline until:
2009 * - it has become 1
2010 * - (part of) the cursor line is moved off the screen or
2011 * - moved at least 'scrolljump' lines and
2012 * - at least 'scrolloff' lines above and below the cursor
2013 */
2014 validate_cheight();
Bram Moolenaar85a20022019-12-21 18:25:54 +01002015 used = curwin->w_cline_height; // includes filler lines above
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 if (curwin->w_cursor.lnum < curwin->w_topline)
2017 scrolled = used;
2018
2019#ifdef FEAT_FOLDING
2020 if (hasFolding(curwin->w_cursor.lnum, &top, &bot))
2021 {
2022 --top;
2023 ++bot;
2024 }
2025 else
2026#endif
2027 {
2028 top = curwin->w_cursor.lnum - 1;
2029 bot = curwin->w_cursor.lnum + 1;
2030 }
2031 new_topline = top + 1;
2032
2033#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002034 // "used" already contains the number of filler lines above, don't add it
2035 // again.
2036 // Hide filler lines above cursor line by adding them to "extra".
Bram Moolenaara09a2c52015-09-08 17:31:59 +02002037 extra += diff_check_fill(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038#endif
2039
2040 /*
2041 * Check if the lines from "top" to "bot" fit in the window. If they do,
2042 * set new_topline and advance "top" and "bot" to include more lines.
2043 */
2044 while (top > 0)
2045 {
2046#ifdef FEAT_FOLDING
2047 if (hasFolding(top, &top, NULL))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002048 // count one logical line for a sequence of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 i = 1;
2050 else
2051#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002052 i = PLINES_NOFILL(top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 used += i;
2054 if (extra + i <= off && bot < curbuf->b_ml.ml_line_count)
2055 {
2056#ifdef FEAT_FOLDING
2057 if (hasFolding(bot, NULL, &bot))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002058 // count one logical line for a sequence of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 ++used;
2060 else
2061#endif
2062 used += plines(bot);
2063 }
2064 if (used > curwin->w_height)
2065 break;
2066 if (top < curwin->w_topline)
2067 scrolled += i;
2068
2069 /*
2070 * If scrolling is needed, scroll at least 'sj' lines.
2071 */
2072 if ((new_topline >= curwin->w_topline || scrolled > min_scroll)
2073 && extra >= off)
2074 break;
2075
2076 extra += i;
2077 new_topline = top;
2078 --top;
2079 ++bot;
2080 }
2081
2082 /*
2083 * If we don't have enough space, put cursor in the middle.
2084 * This makes sure we get the same position when using "k" and "j"
2085 * in a small window.
2086 */
2087 if (used > curwin->w_height)
2088 scroll_cursor_halfway(FALSE);
2089 else
2090 {
2091 /*
2092 * If "always" is FALSE, only adjust topline to a lower value, higher
2093 * value may happen with wrapping lines
2094 */
2095 if (new_topline < curwin->w_topline || always)
2096 curwin->w_topline = new_topline;
2097 if (curwin->w_topline > curwin->w_cursor.lnum)
2098 curwin->w_topline = curwin->w_cursor.lnum;
2099#ifdef FEAT_DIFF
2100 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
2101 if (curwin->w_topfill > 0 && extra > off)
2102 {
2103 curwin->w_topfill -= extra - off;
2104 if (curwin->w_topfill < 0)
2105 curwin->w_topfill = 0;
2106 }
2107 check_topfill(curwin, FALSE);
2108#endif
2109 if (curwin->w_topline != old_topline
2110#ifdef FEAT_DIFF
2111 || curwin->w_topfill != old_topfill
2112#endif
2113 )
2114 curwin->w_valid &=
2115 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2116 curwin->w_valid |= VALID_TOPLINE;
2117 }
2118}
2119
2120/*
2121 * Set w_empty_rows and w_filler_rows for window "wp", having used up "used"
2122 * screen lines for text lines.
2123 */
2124 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002125set_empty_rows(win_T *wp, int used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126{
2127#ifdef FEAT_DIFF
2128 wp->w_filler_rows = 0;
2129#endif
2130 if (used == 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002131 wp->w_empty_rows = 0; // single line that doesn't fit
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 else
2133 {
2134 wp->w_empty_rows = wp->w_height - used;
2135#ifdef FEAT_DIFF
2136 if (wp->w_botline <= wp->w_buffer->b_ml.ml_line_count)
2137 {
2138 wp->w_filler_rows = diff_check_fill(wp, wp->w_botline);
2139 if (wp->w_empty_rows > wp->w_filler_rows)
2140 wp->w_empty_rows -= wp->w_filler_rows;
2141 else
2142 {
2143 wp->w_filler_rows = wp->w_empty_rows;
2144 wp->w_empty_rows = 0;
2145 }
2146 }
2147#endif
2148 }
2149}
2150
2151/*
2152 * Recompute topline to put the cursor at the bottom of the window.
Bram Moolenaar8088ae92022-06-20 11:38:17 +01002153 * When scrolling scroll at least "min_scroll" lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 * If "set_topbot" is TRUE, set topline and botline first (for "zb").
2155 * This is messy stuff!!!
2156 */
2157 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002158scroll_cursor_bot(int min_scroll, int set_topbot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159{
2160 int used;
2161 int scrolled = 0;
2162 int extra = 0;
2163 int i;
2164 linenr_T line_count;
2165 linenr_T old_topline = curwin->w_topline;
2166 lineoff_T loff;
2167 lineoff_T boff;
2168#ifdef FEAT_DIFF
2169 int old_topfill = curwin->w_topfill;
2170 int fill_below_window;
2171#endif
2172 linenr_T old_botline = curwin->w_botline;
2173 linenr_T old_valid = curwin->w_valid;
2174 int old_empty_rows = curwin->w_empty_rows;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002175 linenr_T cln; // Cursor Line Number
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002176 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177
2178 cln = curwin->w_cursor.lnum;
2179 if (set_topbot)
2180 {
2181 used = 0;
2182 curwin->w_botline = cln + 1;
2183#ifdef FEAT_DIFF
2184 loff.fill = 0;
2185#endif
2186 for (curwin->w_topline = curwin->w_botline;
2187 curwin->w_topline > 1;
2188 curwin->w_topline = loff.lnum)
2189 {
2190 loff.lnum = curwin->w_topline;
2191 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002192 if (loff.height == MAXCOL || used + loff.height > curwin->w_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 break;
2194 used += loff.height;
2195#ifdef FEAT_DIFF
2196 curwin->w_topfill = loff.fill;
2197#endif
2198 }
2199 set_empty_rows(curwin, used);
2200 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
2201 if (curwin->w_topline != old_topline
2202#ifdef FEAT_DIFF
2203 || curwin->w_topfill != old_topfill
2204#endif
2205 )
2206 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2207 }
2208 else
2209 validate_botline();
2210
Bram Moolenaar85a20022019-12-21 18:25:54 +01002211 // The lines of the cursor line itself are always used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212#ifdef FEAT_DIFF
2213 used = plines_nofill(cln);
2214#else
2215 validate_cheight();
2216 used = curwin->w_cline_height;
2217#endif
2218
Bram Moolenaar85a20022019-12-21 18:25:54 +01002219 // If the cursor is below botline, we will at least scroll by the height
2220 // of the cursor line. Correct for empty lines, which are really part of
2221 // botline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 if (cln >= curwin->w_botline)
2223 {
2224 scrolled = used;
2225 if (cln == curwin->w_botline)
2226 scrolled -= curwin->w_empty_rows;
2227 }
2228
2229 /*
2230 * Stop counting lines to scroll when
2231 * - hitting start of the file
2232 * - scrolled nothing or at least 'sj' lines
Bram Moolenaar375e3392019-01-31 18:26:10 +01002233 * - at least 'scrolloff' lines below the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 * - lines between botline and cursor have been counted
2235 */
2236#ifdef FEAT_FOLDING
2237 if (!hasFolding(curwin->w_cursor.lnum, &loff.lnum, &boff.lnum))
2238#endif
2239 {
2240 loff.lnum = cln;
2241 boff.lnum = cln;
2242 }
2243#ifdef FEAT_DIFF
2244 loff.fill = 0;
2245 boff.fill = 0;
2246 fill_below_window = diff_check_fill(curwin, curwin->w_botline)
2247 - curwin->w_filler_rows;
2248#endif
2249
2250 while (loff.lnum > 1)
2251 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002252 // Stop when scrolled nothing or at least "min_scroll", found "extra"
2253 // context for 'scrolloff' and counted all lines below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 if ((((scrolled <= 0 || scrolled >= min_scroll)
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002255 && extra >= (mouse_dragging > 0 ? mouse_dragging - 1 : so))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 || boff.lnum + 1 > curbuf->b_ml.ml_line_count)
2257 && loff.lnum <= curwin->w_botline
2258#ifdef FEAT_DIFF
2259 && (loff.lnum < curwin->w_botline
2260 || loff.fill >= fill_below_window)
2261#endif
2262 )
2263 break;
2264
Bram Moolenaar85a20022019-12-21 18:25:54 +01002265 // Add one line above
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002267 if (loff.height == MAXCOL)
2268 used = MAXCOL;
2269 else
2270 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 if (used > curwin->w_height)
2272 break;
2273 if (loff.lnum >= curwin->w_botline
2274#ifdef FEAT_DIFF
2275 && (loff.lnum > curwin->w_botline
2276 || loff.fill <= fill_below_window)
2277#endif
2278 )
2279 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002280 // Count screen lines that are below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 scrolled += loff.height;
2282 if (loff.lnum == curwin->w_botline
2283#ifdef FEAT_DIFF
Bram Moolenaar4e303c82018-11-24 14:27:44 +01002284 && loff.fill == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285#endif
2286 )
2287 scrolled -= curwin->w_empty_rows;
2288 }
2289
2290 if (boff.lnum < curbuf->b_ml.ml_line_count)
2291 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002292 // Add one line below
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 botline_forw(&boff);
2294 used += boff.height;
2295 if (used > curwin->w_height)
2296 break;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002297 if (extra < ( mouse_dragging > 0 ? mouse_dragging - 1 : so)
2298 || scrolled < min_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 {
2300 extra += boff.height;
2301 if (boff.lnum >= curwin->w_botline
2302#ifdef FEAT_DIFF
2303 || (boff.lnum + 1 == curwin->w_botline
2304 && boff.fill > curwin->w_filler_rows)
2305#endif
2306 )
2307 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002308 // Count screen lines that are below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 scrolled += boff.height;
2310 if (boff.lnum == curwin->w_botline
2311#ifdef FEAT_DIFF
2312 && boff.fill == 0
2313#endif
2314 )
2315 scrolled -= curwin->w_empty_rows;
2316 }
2317 }
2318 }
2319 }
2320
Bram Moolenaar85a20022019-12-21 18:25:54 +01002321 // curwin->w_empty_rows is larger, no need to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 if (scrolled <= 0)
2323 line_count = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002324 // more than a screenfull, don't scroll but redraw
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 else if (used > curwin->w_height)
2326 line_count = used;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002327 // scroll minimal number of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 else
2329 {
2330 line_count = 0;
2331#ifdef FEAT_DIFF
2332 boff.fill = curwin->w_topfill;
2333#endif
2334 boff.lnum = curwin->w_topline - 1;
2335 for (i = 0; i < scrolled && boff.lnum < curwin->w_botline; )
2336 {
2337 botline_forw(&boff);
2338 i += boff.height;
2339 ++line_count;
2340 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002341 if (i < scrolled) // below curwin->w_botline, don't scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 line_count = 9999;
2343 }
2344
2345 /*
2346 * Scroll up if the cursor is off the bottom of the screen a bit.
2347 * Otherwise put it at 1/2 of the screen.
2348 */
2349 if (line_count >= curwin->w_height && line_count > min_scroll)
2350 scroll_cursor_halfway(FALSE);
2351 else
2352 scrollup(line_count, TRUE);
2353
2354 /*
2355 * If topline didn't change we need to restore w_botline and w_empty_rows
2356 * (we changed them).
2357 * If topline did change, update_screen() will set botline.
2358 */
2359 if (curwin->w_topline == old_topline && set_topbot)
2360 {
2361 curwin->w_botline = old_botline;
2362 curwin->w_empty_rows = old_empty_rows;
2363 curwin->w_valid = old_valid;
2364 }
2365 curwin->w_valid |= VALID_TOPLINE;
2366}
2367
2368/*
2369 * Recompute topline to put the cursor halfway the window
2370 * If "atend" is TRUE, also put it halfway at the end of the file.
2371 */
2372 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002373scroll_cursor_halfway(int atend)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374{
2375 int above = 0;
2376 linenr_T topline;
2377#ifdef FEAT_DIFF
2378 int topfill = 0;
2379#endif
2380 int below = 0;
2381 int used;
2382 lineoff_T loff;
2383 lineoff_T boff;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002384#ifdef FEAT_DIFF
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002385 linenr_T old_topline = curwin->w_topline;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002386#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387
Bram Moolenaar3697c9b2020-09-26 22:03:00 +02002388#ifdef FEAT_PROP_POPUP
2389 // if the width changed this needs to be updated first
2390 may_update_popup_position();
2391#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 loff.lnum = boff.lnum = curwin->w_cursor.lnum;
2393#ifdef FEAT_FOLDING
2394 (void)hasFolding(loff.lnum, &loff.lnum, &boff.lnum);
2395#endif
2396#ifdef FEAT_DIFF
2397 used = plines_nofill(loff.lnum);
2398 loff.fill = 0;
2399 boff.fill = 0;
2400#else
2401 used = plines(loff.lnum);
2402#endif
2403 topline = loff.lnum;
2404 while (topline > 1)
2405 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002406 if (below <= above) // add a line below the cursor first
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 {
2408 if (boff.lnum < curbuf->b_ml.ml_line_count)
2409 {
2410 botline_forw(&boff);
2411 used += boff.height;
2412 if (used > curwin->w_height)
2413 break;
2414 below += boff.height;
2415 }
2416 else
2417 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002418 ++below; // count a "~" line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 if (atend)
2420 ++used;
2421 }
2422 }
2423
Bram Moolenaar85a20022019-12-21 18:25:54 +01002424 if (below > above) // add a line above the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 {
2426 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002427 if (loff.height == MAXCOL)
2428 used = MAXCOL;
2429 else
2430 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 if (used > curwin->w_height)
2432 break;
2433 above += loff.height;
2434 topline = loff.lnum;
2435#ifdef FEAT_DIFF
2436 topfill = loff.fill;
2437#endif
2438 }
2439 }
2440#ifdef FEAT_FOLDING
2441 if (!hasFolding(topline, &curwin->w_topline, NULL))
2442#endif
2443 curwin->w_topline = topline;
2444#ifdef FEAT_DIFF
2445 curwin->w_topfill = topfill;
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002446 if (old_topline > curwin->w_topline + curwin->w_height)
2447 curwin->w_botfill = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 check_topfill(curwin, FALSE);
2449#endif
2450 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2451 curwin->w_valid |= VALID_TOPLINE;
2452}
2453
2454/*
2455 * Correct the cursor position so that it is in a part of the screen at least
Bram Moolenaar375e3392019-01-31 18:26:10 +01002456 * 'scrolloff' lines from the top and bottom, if possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 * If not possible, put it at the same position as scroll_cursor_halfway().
2458 * When called topline must be valid!
2459 */
2460 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002461cursor_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462{
Bram Moolenaar85a20022019-12-21 18:25:54 +01002463 int above = 0; // screen lines above topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 linenr_T topline;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002465 int below = 0; // screen lines below botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 linenr_T botline;
2467 int above_wanted, below_wanted;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002468 linenr_T cln; // Cursor Line Number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 int max_off;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002470 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471
2472 /*
2473 * How many lines we would like to have above/below the cursor depends on
2474 * whether the first/last line of the file is on screen.
2475 */
Bram Moolenaar375e3392019-01-31 18:26:10 +01002476 above_wanted = so;
2477 below_wanted = so;
Bram Moolenaar9964e462007-05-05 17:54:07 +00002478 if (mouse_dragging > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 {
2480 above_wanted = mouse_dragging - 1;
2481 below_wanted = mouse_dragging - 1;
2482 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 if (curwin->w_topline == 1)
2484 {
2485 above_wanted = 0;
2486 max_off = curwin->w_height / 2;
2487 if (below_wanted > max_off)
2488 below_wanted = max_off;
2489 }
2490 validate_botline();
2491 if (curwin->w_botline == curbuf->b_ml.ml_line_count + 1
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002492 && mouse_dragging == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493 {
2494 below_wanted = 0;
2495 max_off = (curwin->w_height - 1) / 2;
2496 if (above_wanted > max_off)
2497 above_wanted = max_off;
2498 }
2499
2500 /*
2501 * If there are sufficient file-lines above and below the cursor, we can
2502 * return now.
2503 */
2504 cln = curwin->w_cursor.lnum;
2505 if (cln >= curwin->w_topline + above_wanted
2506 && cln < curwin->w_botline - below_wanted
2507#ifdef FEAT_FOLDING
2508 && !hasAnyFolding(curwin)
2509#endif
2510 )
2511 return;
2512
2513 /*
2514 * Narrow down the area where the cursor can be put by taking lines from
2515 * the top and the bottom until:
2516 * - the desired context lines are found
2517 * - the lines from the top is past the lines from the bottom
2518 */
2519 topline = curwin->w_topline;
2520 botline = curwin->w_botline - 1;
2521#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002522 // count filler lines as context
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 above = curwin->w_topfill;
2524 below = curwin->w_filler_rows;
2525#endif
2526 while ((above < above_wanted || below < below_wanted) && topline < botline)
2527 {
2528 if (below < below_wanted && (below <= above || above >= above_wanted))
2529 {
2530#ifdef FEAT_FOLDING
2531 if (hasFolding(botline, &botline, NULL))
2532 ++below;
2533 else
2534#endif
2535 below += plines(botline);
2536 --botline;
2537 }
2538 if (above < above_wanted && (above < below || below >= below_wanted))
2539 {
2540#ifdef FEAT_FOLDING
2541 if (hasFolding(topline, NULL, &topline))
2542 ++above;
2543 else
2544#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002545 above += PLINES_NOFILL(topline);
2546#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002547 // Count filler lines below this line as context.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 if (topline < botline)
2549 above += diff_check_fill(curwin, topline + 1);
2550#endif
2551 ++topline;
2552 }
2553 }
2554 if (topline == botline || botline == 0)
2555 curwin->w_cursor.lnum = topline;
2556 else if (topline > botline)
2557 curwin->w_cursor.lnum = botline;
2558 else
2559 {
2560 if (cln < topline && curwin->w_topline > 1)
2561 {
2562 curwin->w_cursor.lnum = topline;
2563 curwin->w_valid &=
2564 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2565 }
2566 if (cln > botline && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2567 {
2568 curwin->w_cursor.lnum = botline;
2569 curwin->w_valid &=
2570 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2571 }
2572 }
2573 curwin->w_valid |= VALID_TOPLINE;
2574}
2575
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01002576static void get_scroll_overlap(lineoff_T *lp, int dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577
2578/*
2579 * move screen 'count' pages up or down and update screen
2580 *
2581 * return FAIL for failure, OK otherwise
2582 */
2583 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002584onepage(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585{
2586 long n;
2587 int retval = OK;
2588 lineoff_T loff;
2589 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002590 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591
Bram Moolenaar85a20022019-12-21 18:25:54 +01002592 if (curbuf->b_ml.ml_line_count == 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 {
2594 beep_flush();
2595 return FAIL;
2596 }
2597
2598 for ( ; count > 0; --count)
2599 {
2600 validate_botline();
2601 /*
2602 * It's an error to move a page up when the first line is already on
2603 * the screen. It's an error to move a page down when the last line
2604 * is on the screen and the topline is 'scrolloff' lines from the
2605 * last line.
2606 */
2607 if (dir == FORWARD
Bram Moolenaar375e3392019-01-31 18:26:10 +01002608 ? ((curwin->w_topline >= curbuf->b_ml.ml_line_count - so)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 && curwin->w_botline > curbuf->b_ml.ml_line_count)
2610 : (curwin->w_topline == 1
2611#ifdef FEAT_DIFF
2612 && curwin->w_topfill ==
2613 diff_check_fill(curwin, curwin->w_topline)
2614#endif
2615 ))
2616 {
2617 beep_flush();
2618 retval = FAIL;
2619 break;
2620 }
2621
2622#ifdef FEAT_DIFF
2623 loff.fill = 0;
2624#endif
2625 if (dir == FORWARD)
2626 {
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002627 if (ONE_WINDOW && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002629 // Vi compatible scrolling
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002630 if (p_window <= 2)
2631 ++curwin->w_topline;
2632 else
2633 curwin->w_topline += p_window - 2;
2634 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
2635 curwin->w_topline = curbuf->b_ml.ml_line_count;
2636 curwin->w_cursor.lnum = curwin->w_topline;
2637 }
2638 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2639 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002640 // at end of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 curwin->w_topline = curbuf->b_ml.ml_line_count;
2642#ifdef FEAT_DIFF
2643 curwin->w_topfill = 0;
2644#endif
2645 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2646 }
2647 else
2648 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002649 // For the overlap, start with the line just below the window
2650 // and go upwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 loff.lnum = curwin->w_botline;
2652#ifdef FEAT_DIFF
2653 loff.fill = diff_check_fill(curwin, loff.lnum)
2654 - curwin->w_filler_rows;
2655#endif
2656 get_scroll_overlap(&loff, -1);
2657 curwin->w_topline = loff.lnum;
2658#ifdef FEAT_DIFF
2659 curwin->w_topfill = loff.fill;
2660 check_topfill(curwin, FALSE);
2661#endif
2662 curwin->w_cursor.lnum = curwin->w_topline;
2663 curwin->w_valid &= ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|
2664 VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2665 }
2666 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002667 else // dir == BACKWARDS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 {
2669#ifdef FEAT_DIFF
2670 if (curwin->w_topline == 1)
2671 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002672 // Include max number of filler lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 max_topfill();
2674 continue;
2675 }
2676#endif
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002677 if (ONE_WINDOW && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002678 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002679 // Vi compatible scrolling (sort of)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002680 if (p_window <= 2)
2681 --curwin->w_topline;
2682 else
2683 curwin->w_topline -= p_window - 2;
2684 if (curwin->w_topline < 1)
2685 curwin->w_topline = 1;
2686 curwin->w_cursor.lnum = curwin->w_topline + p_window - 1;
2687 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
2688 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2689 continue;
2690 }
2691
Bram Moolenaar85a20022019-12-21 18:25:54 +01002692 // Find the line at the top of the window that is going to be the
2693 // line at the bottom of the window. Make sure this results in
2694 // the same line as before doing CTRL-F.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 loff.lnum = curwin->w_topline - 1;
2696#ifdef FEAT_DIFF
2697 loff.fill = diff_check_fill(curwin, loff.lnum + 1)
2698 - curwin->w_topfill;
2699#endif
2700 get_scroll_overlap(&loff, 1);
2701
2702 if (loff.lnum >= curbuf->b_ml.ml_line_count)
2703 {
2704 loff.lnum = curbuf->b_ml.ml_line_count;
2705#ifdef FEAT_DIFF
2706 loff.fill = 0;
2707 }
2708 else
2709 {
2710 botline_topline(&loff);
2711#endif
2712 }
2713 curwin->w_cursor.lnum = loff.lnum;
2714
Bram Moolenaar85a20022019-12-21 18:25:54 +01002715 // Find the line just above the new topline to get the right line
2716 // at the bottom of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 n = 0;
2718 while (n <= curwin->w_height && loff.lnum >= 1)
2719 {
2720 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002721 if (loff.height == MAXCOL)
2722 n = MAXCOL;
2723 else
2724 n += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002726 if (loff.lnum < 1) // at begin of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 {
2728 curwin->w_topline = 1;
2729#ifdef FEAT_DIFF
2730 max_topfill();
2731#endif
2732 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2733 }
2734 else
2735 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002736 // Go two lines forward again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737#ifdef FEAT_DIFF
2738 topline_botline(&loff);
2739#endif
2740 botline_forw(&loff);
2741 botline_forw(&loff);
2742#ifdef FEAT_DIFF
2743 botline_topline(&loff);
2744#endif
2745#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01002746 // We're at the wrong end of a fold now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 (void)hasFolding(loff.lnum, &loff.lnum, NULL);
2748#endif
2749
Bram Moolenaar85a20022019-12-21 18:25:54 +01002750 // Always scroll at least one line. Avoid getting stuck on
2751 // very long lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 if (loff.lnum >= curwin->w_topline
2753#ifdef FEAT_DIFF
2754 && (loff.lnum > curwin->w_topline
2755 || loff.fill >= curwin->w_topfill)
2756#endif
2757 )
2758 {
2759#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002760 // First try using the maximum number of filler lines. If
2761 // that's not enough, backup one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 loff.fill = curwin->w_topfill;
2763 if (curwin->w_topfill < diff_check_fill(curwin,
2764 curwin->w_topline))
2765 max_topfill();
2766 if (curwin->w_topfill == loff.fill)
2767#endif
2768 {
2769 --curwin->w_topline;
2770#ifdef FEAT_DIFF
2771 curwin->w_topfill = 0;
2772#endif
2773 }
2774 comp_botline(curwin);
2775 curwin->w_cursor.lnum = curwin->w_botline - 1;
Bram Moolenaar3d6db142014-03-28 21:49:32 +01002776 curwin->w_valid &=
2777 ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|VALID_CROW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 }
2779 else
2780 {
2781 curwin->w_topline = loff.lnum;
2782#ifdef FEAT_DIFF
2783 curwin->w_topfill = loff.fill;
2784 check_topfill(curwin, FALSE);
2785#endif
2786 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2787 }
2788 }
2789 }
2790 }
2791#ifdef FEAT_FOLDING
2792 foldAdjustCursor();
2793#endif
2794 cursor_correct();
Bram Moolenaarbc54f3f2016-09-04 14:34:28 +02002795 check_cursor_col();
Bram Moolenaar7c626922005-02-07 22:01:03 +00002796 if (retval == OK)
2797 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 curwin->w_valid &= ~(VALID_WCOL|VALID_WROW|VALID_VIRTCOL);
2799
Bram Moolenaar907dad72018-07-10 15:07:15 +02002800 if (retval == OK && dir == FORWARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 {
Bram Moolenaar907dad72018-07-10 15:07:15 +02002802 // Avoid the screen jumping up and down when 'scrolloff' is non-zero.
2803 // But make sure we scroll at least one line (happens with mix of long
2804 // wrapping lines and non-wrapping line).
2805 if (check_top_offset())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 {
Bram Moolenaar907dad72018-07-10 15:07:15 +02002807 scroll_cursor_top(1, FALSE);
2808 if (curwin->w_topline <= old_topline
2809 && old_topline < curbuf->b_ml.ml_line_count)
2810 {
2811 curwin->w_topline = old_topline + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812#ifdef FEAT_FOLDING
Bram Moolenaar907dad72018-07-10 15:07:15 +02002813 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2814#endif
2815 }
2816 }
2817#ifdef FEAT_FOLDING
2818 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2820#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 }
2822
Bram Moolenaara4d158b2022-08-14 14:17:45 +01002823 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824 return retval;
2825}
2826
2827/*
2828 * Decide how much overlap to use for page-up or page-down scrolling.
2829 * This is symmetric, so that doing both keeps the same lines displayed.
2830 * Three lines are examined:
2831 *
2832 * before CTRL-F after CTRL-F / before CTRL-B
2833 * etc. l1
2834 * l1 last but one line ------------
2835 * l2 last text line l2 top text line
2836 * ------------- l3 second text line
2837 * l3 etc.
2838 */
2839 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002840get_scroll_overlap(lineoff_T *lp, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841{
2842 int h1, h2, h3, h4;
2843 int min_height = curwin->w_height - 2;
2844 lineoff_T loff0, loff1, loff2;
2845
2846#ifdef FEAT_DIFF
2847 if (lp->fill > 0)
2848 lp->height = 1;
2849 else
2850 lp->height = plines_nofill(lp->lnum);
2851#else
2852 lp->height = plines(lp->lnum);
2853#endif
2854 h1 = lp->height;
2855 if (h1 > min_height)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002856 return; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857
2858 loff0 = *lp;
2859 if (dir > 0)
2860 botline_forw(lp);
2861 else
2862 topline_back(lp);
2863 h2 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002864 if (h2 == MAXCOL || h2 + h1 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002866 *lp = loff0; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 return;
2868 }
2869
2870 loff1 = *lp;
2871 if (dir > 0)
2872 botline_forw(lp);
2873 else
2874 topline_back(lp);
2875 h3 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002876 if (h3 == MAXCOL || h3 + h2 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002878 *lp = loff0; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 return;
2880 }
2881
2882 loff2 = *lp;
2883 if (dir > 0)
2884 botline_forw(lp);
2885 else
2886 topline_back(lp);
2887 h4 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002888 if (h4 == MAXCOL || h4 + h3 + h2 > min_height || h3 + h2 + h1 > min_height)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002889 *lp = loff1; // 1 line overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 else
Bram Moolenaar85a20022019-12-21 18:25:54 +01002891 *lp = loff2; // 2 lines overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892}
2893
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894/*
2895 * Scroll 'scroll' lines up or down.
2896 */
2897 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002898halfpage(int flag, linenr_T Prenum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899{
2900 long scrolled = 0;
2901 int i;
2902 int n;
2903 int room;
2904
2905 if (Prenum)
2906 curwin->w_p_scr = (Prenum > curwin->w_height) ?
2907 curwin->w_height : Prenum;
2908 n = (curwin->w_p_scr <= curwin->w_height) ?
2909 curwin->w_p_scr : curwin->w_height;
2910
Bram Moolenaard5d37532017-03-27 23:02:07 +02002911 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 validate_botline();
2913 room = curwin->w_empty_rows;
2914#ifdef FEAT_DIFF
2915 room += curwin->w_filler_rows;
2916#endif
2917 if (flag)
2918 {
2919 /*
2920 * scroll the text up
2921 */
2922 while (n > 0 && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2923 {
2924#ifdef FEAT_DIFF
2925 if (curwin->w_topfill > 0)
2926 {
2927 i = 1;
Bram Moolenaar8455c5e2020-07-14 21:22:30 +02002928 --n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 --curwin->w_topfill;
2930 }
2931 else
2932#endif
2933 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002934 i = PLINES_NOFILL(curwin->w_topline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935 n -= i;
2936 if (n < 0 && scrolled > 0)
2937 break;
2938#ifdef FEAT_FOLDING
2939 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
2940#endif
2941 ++curwin->w_topline;
2942#ifdef FEAT_DIFF
2943 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
2944#endif
2945
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
2947 {
2948 ++curwin->w_cursor.lnum;
2949 curwin->w_valid &=
2950 ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
2951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 }
2953 curwin->w_valid &= ~(VALID_CROW|VALID_WROW);
2954 scrolled += i;
2955
2956 /*
2957 * Correct w_botline for changed w_topline.
2958 * Won't work when there are filler lines.
2959 */
2960#ifdef FEAT_DIFF
2961 if (curwin->w_p_diff)
2962 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
2963 else
2964#endif
2965 {
2966 room += i;
2967 do
2968 {
2969 i = plines(curwin->w_botline);
2970 if (i > room)
2971 break;
2972#ifdef FEAT_FOLDING
2973 (void)hasFolding(curwin->w_botline, NULL,
2974 &curwin->w_botline);
2975#endif
2976 ++curwin->w_botline;
2977 room -= i;
2978 } while (curwin->w_botline <= curbuf->b_ml.ml_line_count);
2979 }
2980 }
2981
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 /*
2983 * When hit bottom of the file: move cursor down.
2984 */
2985 if (n > 0)
2986 {
2987# ifdef FEAT_FOLDING
2988 if (hasAnyFolding(curwin))
2989 {
2990 while (--n >= 0
2991 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
2992 {
2993 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2994 &curwin->w_cursor.lnum);
2995 ++curwin->w_cursor.lnum;
2996 }
2997 }
2998 else
2999# endif
3000 curwin->w_cursor.lnum += n;
3001 check_cursor_lnum();
3002 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 }
3004 else
3005 {
3006 /*
3007 * scroll the text down
3008 */
3009 while (n > 0 && curwin->w_topline > 1)
3010 {
3011#ifdef FEAT_DIFF
3012 if (curwin->w_topfill < diff_check_fill(curwin, curwin->w_topline))
3013 {
3014 i = 1;
Bram Moolenaard00e0242019-03-20 21:42:20 +01003015 --n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 ++curwin->w_topfill;
3017 }
3018 else
3019#endif
3020 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02003021 i = PLINES_NOFILL(curwin->w_topline - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 n -= i;
3023 if (n < 0 && scrolled > 0)
3024 break;
3025 --curwin->w_topline;
3026#ifdef FEAT_FOLDING
3027 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
3028#endif
3029#ifdef FEAT_DIFF
3030 curwin->w_topfill = 0;
3031#endif
3032 }
3033 curwin->w_valid &= ~(VALID_CROW|VALID_WROW|
3034 VALID_BOTLINE|VALID_BOTLINE_AP);
3035 scrolled += i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036 if (curwin->w_cursor.lnum > 1)
3037 {
3038 --curwin->w_cursor.lnum;
3039 curwin->w_valid &= ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
3040 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 }
Bram Moolenaard00e0242019-03-20 21:42:20 +01003042
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 /*
3044 * When hit top of the file: move cursor up.
3045 */
3046 if (n > 0)
3047 {
3048 if (curwin->w_cursor.lnum <= (linenr_T)n)
3049 curwin->w_cursor.lnum = 1;
3050 else
3051# ifdef FEAT_FOLDING
3052 if (hasAnyFolding(curwin))
3053 {
3054 while (--n >= 0 && curwin->w_cursor.lnum > 1)
3055 {
3056 --curwin->w_cursor.lnum;
3057 (void)hasFolding(curwin->w_cursor.lnum,
3058 &curwin->w_cursor.lnum, NULL);
3059 }
3060 }
3061 else
3062# endif
3063 curwin->w_cursor.lnum -= n;
3064 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 }
3066# ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01003067 // Move cursor to first line of closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 foldAdjustCursor();
3069# endif
3070#ifdef FEAT_DIFF
3071 check_topfill(curwin, !flag);
3072#endif
3073 cursor_correct();
3074 beginline(BL_SOL | BL_FIX);
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003075 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076}
Bram Moolenaar860cae12010-06-05 23:22:07 +02003077
Bram Moolenaar860cae12010-06-05 23:22:07 +02003078 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003079do_check_cursorbind(void)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003080{
3081 linenr_T line = curwin->w_cursor.lnum;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003082 colnr_T col = curwin->w_cursor.col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003083 colnr_T coladd = curwin->w_cursor.coladd;
Bram Moolenaar524780d2012-03-28 14:19:50 +02003084 colnr_T curswant = curwin->w_curswant;
3085 int set_curswant = curwin->w_set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003086 win_T *old_curwin = curwin;
3087 buf_T *old_curbuf = curbuf;
Bram Moolenaar61452852011-02-01 18:01:11 +01003088 int restart_edit_save;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003089 int old_VIsual_select = VIsual_select;
3090 int old_VIsual_active = VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003091
3092 /*
3093 * loop through the cursorbound windows
3094 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003095 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02003096 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003097 {
3098 curbuf = curwin->w_buffer;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003099 // skip original window and windows with 'noscrollbind'
Bram Moolenaar860cae12010-06-05 23:22:07 +02003100 if (curwin != old_curwin && curwin->w_p_crb)
3101 {
3102# ifdef FEAT_DIFF
3103 if (curwin->w_p_diff)
Bram Moolenaar025e3e02016-10-18 14:50:18 +02003104 curwin->w_cursor.lnum =
3105 diff_get_corresponding_line(old_curbuf, line);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003106 else
3107# endif
3108 curwin->w_cursor.lnum = line;
3109 curwin->w_cursor.col = col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003110 curwin->w_cursor.coladd = coladd;
Bram Moolenaar524780d2012-03-28 14:19:50 +02003111 curwin->w_curswant = curswant;
3112 curwin->w_set_curswant = set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003113
Bram Moolenaar85a20022019-12-21 18:25:54 +01003114 // Make sure the cursor is in a valid position. Temporarily set
3115 // "restart_edit" to allow the cursor to be beyond the EOL.
Bram Moolenaar61452852011-02-01 18:01:11 +01003116 restart_edit_save = restart_edit;
3117 restart_edit = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003118 check_cursor();
Bram Moolenaara315ce12022-06-24 12:38:57 +01003119
3120 // Avoid a scroll here for the cursor position, 'scrollbind' is
3121 // more important.
3122 if (!curwin->w_p_scb)
3123 validate_cursor();
3124
Bram Moolenaar61452852011-02-01 18:01:11 +01003125 restart_edit = restart_edit_save;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003126 // Correct cursor for multi-byte character.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003127 if (has_mbyte)
3128 mb_adjust_cursor();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003129 redraw_later(UPD_VALID);
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01003130
Bram Moolenaar85a20022019-12-21 18:25:54 +01003131 // Only scroll when 'scrollbind' hasn't done this.
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01003132 if (!curwin->w_p_scb)
3133 update_topline();
Bram Moolenaar860cae12010-06-05 23:22:07 +02003134 curwin->w_redr_status = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003135 }
3136 }
3137
3138 /*
3139 * reset current-window
3140 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003141 VIsual_select = old_VIsual_select;
3142 VIsual_active = old_VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003143 curwin = old_curwin;
3144 curbuf = old_curbuf;
3145}