blob: 32cd6f37e73c79d1f94e4cf7215da5a3c8df80a3 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * move.c: Functions for moving the cursor and scrolling text.
11 *
12 * There are two ways to move the cursor:
13 * 1. Move the cursor directly, the text is scrolled to keep the cursor in the
14 * window.
15 * 2. Scroll the text, the cursor is moved into the text visible in the
16 * window.
17 * The 'scrolloff' option makes this a bit complicated.
18 */
19
20#include "vim.h"
21
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010022static int scrolljump_value(void);
23static int check_top_offset(void);
24static void curs_rows(win_T *wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000025
26typedef struct
27{
Bram Moolenaar85a20022019-12-21 18:25:54 +010028 linenr_T lnum; // line number
Bram Moolenaar071d4272004-06-13 20:20:40 +000029#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +010030 int fill; // filler lines
Bram Moolenaar071d4272004-06-13 20:20:40 +000031#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +010032 int height; // height of added line
Bram Moolenaar071d4272004-06-13 20:20:40 +000033} lineoff_T;
34
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010035static void topline_back(lineoff_T *lp);
36static void botline_forw(lineoff_T *lp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000037
38/*
Bram Moolenaarf6196f42022-10-02 21:29:55 +010039 * Reduce "n" for the screen lines skipped with "wp->w_skipcol".
40 */
41 static int
42adjust_plines_for_skipcol(win_T *wp, int n)
43{
44 if (wp->w_skipcol == 0)
45 return n;
46
47 int off = 0;
48 int width = wp->w_width - win_col_off(wp);
49 if (wp->w_skipcol >= width)
50 {
51 ++off;
52 int skip = wp->w_skipcol - width;
Bram Moolenaarb6aab8f2022-10-03 20:01:16 +010053 width += win_col_off2(wp);
Bram Moolenaarf6196f42022-10-02 21:29:55 +010054 while (skip >= width)
55 {
56 ++off;
57 skip -= width;
58 }
59 }
60 wp->w_valid &= ~VALID_WROW;
61 return n - off;
62}
63
64/*
Bram 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
Luuk van Baal13ece2a2022-10-03 15:28:08 +0100222 // Cursor is updated instead when this is TRUE for 'splitkeep'.
223 if (skip_update_topline)
224 return;
225
Bram Moolenaar85a20022019-12-21 18:25:54 +0100226 // If there is no valid screen and when the window height is zero just use
227 // the cursor line.
Bram Moolenaard5d37532017-03-27 23:02:07 +0200228 if (!screen_valid(TRUE) || curwin->w_height == 0)
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200229 {
Bram Moolenaar3b6d57f2020-11-01 21:56:40 +0100230 check_cursor_lnum();
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200231 curwin->w_topline = curwin->w_cursor.lnum;
232 curwin->w_botline = curwin->w_topline;
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200233 curwin->w_scbind_pos = 1;
Bram Moolenaarcfc216e2014-09-23 18:37:56 +0200234 return;
235 }
236
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237 check_cursor_moved(curwin);
238 if (curwin->w_valid & VALID_TOPLINE)
239 return;
240
Bram Moolenaar85a20022019-12-21 18:25:54 +0100241 // When dragging with the mouse, don't scroll that quickly
Bram Moolenaar9964e462007-05-05 17:54:07 +0000242 if (mouse_dragging > 0)
Bram Moolenaar375e3392019-01-31 18:26:10 +0100243 *so_ptr = mouse_dragging - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244
245 old_topline = curwin->w_topline;
246#ifdef FEAT_DIFF
247 old_topfill = curwin->w_topfill;
248#endif
249
250 /*
251 * If the buffer is empty, always set topline to 1.
252 */
Bram Moolenaar85a20022019-12-21 18:25:54 +0100253 if (BUFEMPTY()) // special case - file is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 {
255 if (curwin->w_topline != 1)
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100256 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 curwin->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258 curwin->w_botline = 2;
259 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 curwin->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261 }
262
263 /*
264 * If the cursor is above or near the top of the window, scroll the window
265 * to show the line the cursor is in, with 'scrolloff' context.
266 */
267 else
268 {
Bram Moolenaar46b54742022-10-06 15:46:49 +0100269 if (curwin->w_topline > 1 || curwin->w_skipcol > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100271 // If the cursor is above topline, scrolling is always needed.
272 // If the cursor is far below topline and there is no folding,
273 // scrolling down is never needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274 if (curwin->w_cursor.lnum < curwin->w_topline)
275 check_topline = TRUE;
276 else if (check_top_offset())
277 check_topline = TRUE;
Bram Moolenaar46b54742022-10-06 15:46:49 +0100278 else if (curwin->w_cursor.lnum == curwin->w_topline)
279 {
280 colnr_T vcol;
281
282 // check the cursor position is visible. Add 3 for the ">>>"
283 // displayed in the top-left.
284 getvvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
285 if (curwin->w_skipcol + 3 >= vcol)
286 check_topline = TRUE;
287 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288 }
289#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +0100290 // Check if there are more filler lines than allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291 if (!check_topline && curwin->w_topfill > diff_check_fill(curwin,
292 curwin->w_topline))
293 check_topline = TRUE;
294#endif
295
296 if (check_topline)
297 {
298 halfheight = curwin->w_height / 2 - 1;
299 if (halfheight < 2)
300 halfheight = 2;
301
302#ifdef FEAT_FOLDING
303 if (hasAnyFolding(curwin))
304 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100305 // Count the number of logical lines between the cursor and
306 // topline + scrolloff (approximation of how much will be
307 // scrolled).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 n = 0;
309 for (lnum = curwin->w_cursor.lnum;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100310 lnum < curwin->w_topline + *so_ptr; ++lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 {
312 ++n;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100313 // stop at end of file or when we know we are far off
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 if (lnum >= curbuf->b_ml.ml_line_count || n >= halfheight)
315 break;
316 (void)hasFolding(lnum, NULL, &lnum);
317 }
318 }
319 else
320#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +0100321 n = curwin->w_topline + *so_ptr - curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322
Bram Moolenaar85a20022019-12-21 18:25:54 +0100323 // If we weren't very close to begin with, we scroll to put the
324 // cursor in the middle of the window. Otherwise put the cursor
325 // near the top of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326 if (n >= halfheight)
327 scroll_cursor_halfway(FALSE);
328 else
329 {
Bram Moolenaar1e015462005-09-25 22:16:38 +0000330 scroll_cursor_top(scrolljump_value(), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 check_botline = TRUE;
332 }
333 }
334
335 else
336 {
337#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100338 // Make sure topline is the first line of a fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
340#endif
341 check_botline = TRUE;
342 }
343 }
344
345 /*
346 * If the cursor is below the bottom of the window, scroll the window
347 * to put the cursor on the window.
348 * When w_botline is invalid, recompute it first, to avoid a redraw later.
349 * If w_botline was approximated, we might need a redraw later in a few
350 * cases, but we don't want to spend (a lot of) time recomputing w_botline
351 * for every small change.
352 */
353 if (check_botline)
354 {
355 if (!(curwin->w_valid & VALID_BOTLINE_AP))
356 validate_botline();
357
358 if (curwin->w_botline <= curbuf->b_ml.ml_line_count)
359 {
Bram Moolenaard4153d42008-11-15 15:06:17 +0000360 if (curwin->w_cursor.lnum < curwin->w_botline)
361 {
362 if (((long)curwin->w_cursor.lnum
Bram Moolenaar8088ae92022-06-20 11:38:17 +0100363 >= (long)curwin->w_botline - *so_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364#ifdef FEAT_FOLDING
365 || hasAnyFolding(curwin)
366#endif
367 ))
Bram Moolenaard4153d42008-11-15 15:06:17 +0000368 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369 lineoff_T loff;
370
Bram Moolenaar85a20022019-12-21 18:25:54 +0100371 // Cursor is (a few lines) above botline, check if there are
372 // 'scrolloff' window lines below the cursor. If not, need to
373 // scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 n = curwin->w_empty_rows;
375 loff.lnum = curwin->w_cursor.lnum;
376#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100377 // In a fold go to its last line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 (void)hasFolding(loff.lnum, NULL, &loff.lnum);
379#endif
380#ifdef FEAT_DIFF
381 loff.fill = 0;
382 n += curwin->w_filler_rows;
383#endif
384 loff.height = 0;
385 while (loff.lnum < curwin->w_botline
386#ifdef FEAT_DIFF
387 && (loff.lnum + 1 < curwin->w_botline || loff.fill == 0)
388#endif
389 )
390 {
391 n += loff.height;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100392 if (n >= *so_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 break;
394 botline_forw(&loff);
395 }
Bram Moolenaar375e3392019-01-31 18:26:10 +0100396 if (n >= *so_ptr)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100397 // sufficient context, no need to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 check_botline = FALSE;
Bram Moolenaard4153d42008-11-15 15:06:17 +0000399 }
400 else
Bram Moolenaar85a20022019-12-21 18:25:54 +0100401 // sufficient context, no need to scroll
Bram Moolenaard4153d42008-11-15 15:06:17 +0000402 check_botline = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403 }
404 if (check_botline)
405 {
406#ifdef FEAT_FOLDING
407 if (hasAnyFolding(curwin))
408 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100409 // Count the number of logical lines between the cursor and
410 // botline - scrolloff (approximation of how much will be
411 // scrolled).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412 line_count = 0;
413 for (lnum = curwin->w_cursor.lnum;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100414 lnum >= curwin->w_botline - *so_ptr; --lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 {
416 ++line_count;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100417 // stop at end of file or when we know we are far off
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 if (lnum <= 0 || line_count > curwin->w_height + 1)
419 break;
420 (void)hasFolding(lnum, &lnum, NULL);
421 }
422 }
423 else
424#endif
425 line_count = curwin->w_cursor.lnum - curwin->w_botline
Bram Moolenaar8088ae92022-06-20 11:38:17 +0100426 + 1 + *so_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427 if (line_count <= curwin->w_height + 1)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000428 scroll_cursor_bot(scrolljump_value(), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 else
430 scroll_cursor_halfway(FALSE);
431 }
432 }
433 }
434 curwin->w_valid |= VALID_TOPLINE;
435
436 /*
437 * Need to redraw when topline changed.
438 */
439 if (curwin->w_topline != old_topline
440#ifdef FEAT_DIFF
441 || curwin->w_topfill != old_topfill
442#endif
443 )
444 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +0100445 dollar_vcol = -1;
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000446 if (curwin->w_skipcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 {
448 curwin->w_skipcol = 0;
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100449 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 }
451 else
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100452 redraw_later(UPD_VALID);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100453 // May need to set w_skipcol when cursor in w_topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454 if (curwin->w_cursor.lnum == curwin->w_topline)
455 validate_cursor();
456 }
457
Bram Moolenaar375e3392019-01-31 18:26:10 +0100458 *so_ptr = save_so;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459}
460
461/*
Bram Moolenaar1e015462005-09-25 22:16:38 +0000462 * Return the scrolljump value to use for the current window.
463 * When 'scrolljump' is positive use it as-is.
464 * When 'scrolljump' is negative use it as a percentage of the window height.
465 */
466 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100467scrolljump_value(void)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000468{
469 if (p_sj >= 0)
470 return (int)p_sj;
471 return (curwin->w_height * -p_sj) / 100;
472}
473
474/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475 * Return TRUE when there are not 'scrolloff' lines above the cursor for the
476 * current window.
477 */
478 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100479check_top_offset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480{
481 lineoff_T loff;
482 int n;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +0100483 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484
Bram Moolenaar375e3392019-01-31 18:26:10 +0100485 if (curwin->w_cursor.lnum < curwin->w_topline + so
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486#ifdef FEAT_FOLDING
487 || hasAnyFolding(curwin)
488#endif
489 )
490 {
491 loff.lnum = curwin->w_cursor.lnum;
492#ifdef FEAT_DIFF
493 loff.fill = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100494 n = curwin->w_topfill; // always have this context
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495#else
496 n = 0;
497#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +0100498 // Count the visible screen lines above the cursor line.
Bram Moolenaar375e3392019-01-31 18:26:10 +0100499 while (n < so)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 {
501 topline_back(&loff);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100502 // Stop when included a line above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 if (loff.lnum < curwin->w_topline
504#ifdef FEAT_DIFF
505 || (loff.lnum == curwin->w_topline && loff.fill > 0)
506#endif
507 )
508 break;
509 n += loff.height;
510 }
Bram Moolenaar375e3392019-01-31 18:26:10 +0100511 if (n < so)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 return TRUE;
513 }
514 return FALSE;
515}
516
Bram Moolenaare24b4ab2022-09-16 20:51:14 +0100517/*
518 * Update w_curswant.
519 */
520 void
521update_curswant_force(void)
522{
523 validate_virtcol();
524 curwin->w_curswant = curwin->w_virtcol
525#ifdef FEAT_PROP_POPUP
526 - curwin->w_virtcol_first_char
527#endif
528 ;
529 curwin->w_set_curswant = FALSE;
530}
531
532/*
533 * Update w_curswant if w_set_curswant is set.
534 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100536update_curswant(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537{
538 if (curwin->w_set_curswant)
Bram Moolenaare24b4ab2022-09-16 20:51:14 +0100539 update_curswant_force();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540}
541
542/*
543 * Check if the cursor has moved. Set the w_valid flag accordingly.
544 */
545 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100546check_cursor_moved(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547{
548 if (wp->w_cursor.lnum != wp->w_valid_cursor.lnum)
549 {
550 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
Bram Moolenaara91cb982022-05-08 19:39:31 +0100551 |VALID_CHEIGHT|VALID_CROW|VALID_TOPLINE
552 |VALID_BOTLINE|VALID_BOTLINE_AP);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 wp->w_valid_cursor = wp->w_cursor;
554 wp->w_valid_leftcol = wp->w_leftcol;
555 }
556 else if (wp->w_cursor.col != wp->w_valid_cursor.col
557 || wp->w_leftcol != wp->w_valid_leftcol
Bram Moolenaar29ddebe2019-01-26 17:28:26 +0100558 || wp->w_cursor.coladd != wp->w_valid_cursor.coladd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 {
560 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL);
561 wp->w_valid_cursor.col = wp->w_cursor.col;
562 wp->w_valid_leftcol = wp->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 wp->w_valid_cursor.coladd = wp->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 }
565}
566
567/*
568 * Call this function when some window settings have changed, which require
569 * the cursor position, botline and topline to be recomputed and the window to
570 * be redrawn. E.g, when changing the 'wrap' option or folding.
571 */
572 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100573changed_window_setting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574{
575 changed_window_setting_win(curwin);
576}
577
578 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100579changed_window_setting_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580{
581 wp->w_lines_valid = 0;
582 changed_line_abv_curs_win(wp);
583 wp->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP|VALID_TOPLINE);
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100584 redraw_win_later(wp, UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585}
586
587/*
588 * Set wp->w_topline to a certain number.
589 */
590 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100591set_topline(win_T *wp, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592{
Bram Moolenaar04626c22021-09-01 16:02:07 +0200593#ifdef FEAT_DIFF
594 linenr_T prev_topline = wp->w_topline;
595#endif
596
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100598 // go to first of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
600#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +0100601 // Approximate the value of w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602 wp->w_botline += lnum - wp->w_topline;
Bram Moolenaar23999d72020-12-23 14:36:00 +0100603 if (wp->w_botline > wp->w_buffer->b_ml.ml_line_count + 1)
604 wp->w_botline = wp->w_buffer->b_ml.ml_line_count + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 wp->w_topline = lnum;
Bram Moolenaard4153d42008-11-15 15:06:17 +0000606 wp->w_topline_was_set = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607#ifdef FEAT_DIFF
Bram Moolenaar04626c22021-09-01 16:02:07 +0200608 if (lnum != prev_topline)
609 // Keep the filler lines when the topline didn't change.
610 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611#endif
612 wp->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_TOPLINE);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100613 // Don't set VALID_TOPLINE here, 'scrolloff' needs to be checked.
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100614 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615}
616
617/*
618 * Call this function when the length of the cursor line (in screen
619 * characters) has changed, and the change is before the cursor.
620 * Need to take care of w_botline separately!
621 */
622 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100623changed_cline_bef_curs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624{
625 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
626 |VALID_CHEIGHT|VALID_TOPLINE);
627}
628
629 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100630changed_cline_bef_curs_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631{
632 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
633 |VALID_CHEIGHT|VALID_TOPLINE);
634}
635
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636/*
637 * Call this function when the length of a line (in screen characters) above
638 * the cursor have changed.
639 * Need to take care of w_botline separately!
640 */
641 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100642changed_line_abv_curs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643{
644 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL|VALID_CROW
645 |VALID_CHEIGHT|VALID_TOPLINE);
646}
647
648 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100649changed_line_abv_curs_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650{
651 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL|VALID_CROW
652 |VALID_CHEIGHT|VALID_TOPLINE);
653}
654
655/*
Bram Moolenaar326c5d32022-08-12 13:05:49 +0100656 * Display of line has changed for "buf", invalidate cursor position and
657 * w_botline.
658 */
659 void
660changed_line_display_buf(buf_T *buf)
661{
662 win_T *wp;
663
664 FOR_ALL_WINDOWS(wp)
665 if (wp->w_buffer == buf)
666 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
667 |VALID_CROW|VALID_CHEIGHT
668 |VALID_TOPLINE|VALID_BOTLINE|VALID_BOTLINE_AP);
669}
670
671/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 * Make sure the value of curwin->w_botline is valid.
673 */
674 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100675validate_botline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676{
Bram Moolenaar23999d72020-12-23 14:36:00 +0100677 validate_botline_win(curwin);
678}
679
680/*
681 * Make sure the value of wp->w_botline is valid.
682 */
683 void
684validate_botline_win(win_T *wp)
685{
686 if (!(wp->w_valid & VALID_BOTLINE))
687 comp_botline(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688}
689
690/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 * Mark curwin->w_botline as invalid (because of some change in the buffer).
692 */
693 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100694invalidate_botline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695{
696 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
697}
698
699 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100700invalidate_botline_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701{
702 wp->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
703}
704
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100706approximate_botline_win(
707 win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708{
709 wp->w_valid &= ~VALID_BOTLINE;
710}
711
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712/*
713 * Return TRUE if curwin->w_wrow and curwin->w_wcol are valid.
714 */
715 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100716cursor_valid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717{
718 check_cursor_moved(curwin);
719 return ((curwin->w_valid & (VALID_WROW|VALID_WCOL)) ==
720 (VALID_WROW|VALID_WCOL));
721}
722
723/*
724 * Validate cursor position. Makes sure w_wrow and w_wcol are valid.
725 * w_topline must be valid, you may need to call update_topline() first!
726 */
727 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100728validate_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729{
Bram Moolenaard4566c12022-09-24 21:06:39 +0100730 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731 check_cursor_moved(curwin);
732 if ((curwin->w_valid & (VALID_WCOL|VALID_WROW)) != (VALID_WCOL|VALID_WROW))
733 curs_columns(TRUE);
734}
735
736#if defined(FEAT_GUI) || defined(PROTO)
737/*
738 * validate w_cline_row.
739 */
740 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100741validate_cline_row(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742{
743 /*
744 * First make sure that w_topline is valid (after moving the cursor).
745 */
746 update_topline();
747 check_cursor_moved(curwin);
748 if (!(curwin->w_valid & VALID_CROW))
Bram Moolenaar3f9be972014-12-13 21:09:57 +0100749 curs_rows(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750}
751#endif
752
753/*
754 * Compute wp->w_cline_row and wp->w_cline_height, based on the current value
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200755 * of wp->w_topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756 */
757 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100758curs_rows(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759{
760 linenr_T lnum;
761 int i;
762 int all_invalid;
763 int valid;
764#ifdef FEAT_FOLDING
765 long fold_count;
766#endif
767
Bram Moolenaar85a20022019-12-21 18:25:54 +0100768 // Check if wp->w_lines[].wl_size is invalid
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 all_invalid = (!redrawing()
770 || wp->w_lines_valid == 0
771 || wp->w_lines[0].wl_lnum > wp->w_topline);
772 i = 0;
773 wp->w_cline_row = 0;
774 for (lnum = wp->w_topline; lnum < wp->w_cursor.lnum; ++i)
775 {
776 valid = FALSE;
777 if (!all_invalid && i < wp->w_lines_valid)
778 {
779 if (wp->w_lines[i].wl_lnum < lnum || !wp->w_lines[i].wl_valid)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100780 continue; // skip changed or deleted lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 if (wp->w_lines[i].wl_lnum == lnum)
782 {
783#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100784 // Check for newly inserted lines below this row, in which
785 // case we need to check for folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 if (!wp->w_buffer->b_mod_set
787 || wp->w_lines[i].wl_lastlnum < wp->w_cursor.lnum
788 || wp->w_buffer->b_mod_top
789 > wp->w_lines[i].wl_lastlnum + 1)
790#endif
791 valid = TRUE;
792 }
793 else if (wp->w_lines[i].wl_lnum > lnum)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100794 --i; // hold at inserted lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 }
796 if (valid
797#ifdef FEAT_DIFF
798 && (lnum != wp->w_topline || !wp->w_p_diff)
799#endif
800 )
801 {
802#ifdef FEAT_FOLDING
803 lnum = wp->w_lines[i].wl_lastlnum + 1;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100804 // Cursor inside folded lines, don't count this row
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 if (lnum > wp->w_cursor.lnum)
806 break;
807#else
808 ++lnum;
809#endif
810 wp->w_cline_row += wp->w_lines[i].wl_size;
811 }
812 else
813 {
814#ifdef FEAT_FOLDING
815 fold_count = foldedCount(wp, lnum, NULL);
816 if (fold_count)
817 {
818 lnum += fold_count;
819 if (lnum > wp->w_cursor.lnum)
820 break;
821 ++wp->w_cline_row;
822 }
823 else
824#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100825 {
826 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827#ifdef FEAT_DIFF
828 if (lnum == wp->w_topline)
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100829 n = plines_win_nofill(wp, lnum, TRUE) + wp->w_topfill;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 else
831#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100832 n = plines_win(wp, lnum, TRUE);
833 if (lnum++ == wp->w_topline)
834 n = adjust_plines_for_skipcol(wp, n);
835 wp->w_cline_row += n;
836 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 }
838 }
839
840 check_cursor_moved(wp);
841 if (!(wp->w_valid & VALID_CHEIGHT))
842 {
843 if (all_invalid
844 || i == wp->w_lines_valid
845 || (i < wp->w_lines_valid
846 && (!wp->w_lines[i].wl_valid
847 || wp->w_lines[i].wl_lnum != wp->w_cursor.lnum)))
848 {
849#ifdef FEAT_DIFF
850 if (wp->w_cursor.lnum == wp->w_topline)
851 wp->w_cline_height = plines_win_nofill(wp, wp->w_cursor.lnum,
852 TRUE) + wp->w_topfill;
853 else
854#endif
855 wp->w_cline_height = plines_win(wp, wp->w_cursor.lnum, TRUE);
856#ifdef FEAT_FOLDING
857 wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
858 NULL, NULL, TRUE, NULL);
859#endif
860 }
861 else if (i > wp->w_lines_valid)
862 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100863 // a line that is too long to fit on the last screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 wp->w_cline_height = 0;
865#ifdef FEAT_FOLDING
866 wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
867 NULL, NULL, TRUE, NULL);
868#endif
869 }
870 else
871 {
872 wp->w_cline_height = wp->w_lines[i].wl_size;
873#ifdef FEAT_FOLDING
874 wp->w_cline_folded = wp->w_lines[i].wl_folded;
875#endif
876 }
877 }
878
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100879 redraw_for_cursorline(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 wp->w_valid |= VALID_CROW|VALID_CHEIGHT;
881
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882}
883
884/*
885 * Validate curwin->w_virtcol only.
886 */
887 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100888validate_virtcol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889{
890 validate_virtcol_win(curwin);
891}
892
893/*
894 * Validate wp->w_virtcol only.
895 */
896 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100897validate_virtcol_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898{
899 check_cursor_moved(wp);
900 if (!(wp->w_valid & VALID_VIRTCOL))
901 {
Bram Moolenaar04e0ed12022-09-10 20:00:56 +0100902#ifdef FEAT_PROP_POPUP
903 wp->w_virtcol_first_char = 0;
904#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 getvvcol(wp, &wp->w_cursor, NULL, &(wp->w_virtcol), NULL);
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000906#ifdef FEAT_SYN_HL
zeertzjq3e559cd2022-03-27 19:26:55 +0100907 redraw_for_cursorcolumn(wp);
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000908#endif
zeertzjq3e559cd2022-03-27 19:26:55 +0100909 wp->w_valid |= VALID_VIRTCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 }
911}
912
913/*
914 * Validate curwin->w_cline_height only.
915 */
Bram Moolenaar09dd2bb2019-12-14 18:42:15 +0100916 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100917validate_cheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918{
919 check_cursor_moved(curwin);
920 if (!(curwin->w_valid & VALID_CHEIGHT))
921 {
922#ifdef FEAT_DIFF
923 if (curwin->w_cursor.lnum == curwin->w_topline)
924 curwin->w_cline_height = plines_nofill(curwin->w_cursor.lnum)
925 + curwin->w_topfill;
926 else
927#endif
928 curwin->w_cline_height = plines(curwin->w_cursor.lnum);
929#ifdef FEAT_FOLDING
930 curwin->w_cline_folded = hasFolding(curwin->w_cursor.lnum, NULL, NULL);
931#endif
932 curwin->w_valid |= VALID_CHEIGHT;
933 }
934}
935
936/*
Bram Moolenaarc236c162008-07-13 17:41:49 +0000937 * Validate w_wcol and w_virtcol only.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 */
939 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100940validate_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941{
942 colnr_T off;
943 colnr_T col;
Bram Moolenaar6427c602010-02-03 17:43:07 +0100944 int width;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945
946 validate_virtcol();
947 if (!(curwin->w_valid & VALID_WCOL))
948 {
949 col = curwin->w_virtcol;
950 off = curwin_col_off();
951 col += off;
Bram Moolenaar02631462017-09-22 15:20:32 +0200952 width = curwin->w_width - off + curwin_col_off2();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953
Bram Moolenaar85a20022019-12-21 18:25:54 +0100954 // long line wrapping, adjust curwin->w_wrow
Bram Moolenaarc236c162008-07-13 17:41:49 +0000955 if (curwin->w_p_wrap
Bram Moolenaar02631462017-09-22 15:20:32 +0200956 && col >= (colnr_T)curwin->w_width
Bram Moolenaar6427c602010-02-03 17:43:07 +0100957 && width > 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100958 // use same formula as what is used in curs_columns()
Bram Moolenaar02631462017-09-22 15:20:32 +0200959 col -= ((col - curwin->w_width) / width + 1) * width;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000960 if (col > (int)curwin->w_leftcol)
961 col -= curwin->w_leftcol;
962 else
963 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 curwin->w_wcol = col;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000965
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 curwin->w_valid |= VALID_WCOL;
Bram Moolenaar4792a672020-11-15 21:11:18 +0100967#ifdef FEAT_PROP_POPUP
Bram Moolenaar6a076442020-11-15 20:32:58 +0100968 curwin->w_flags &= ~WFLAG_WCOL_OFF_ADDED;
Bram Moolenaar4792a672020-11-15 21:11:18 +0100969#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 }
971}
972
973/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200974 * Compute offset of a window, occupied by absolute or relative line number,
975 * fold column and sign column (these don't move when scrolling horizontally).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 */
977 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100978win_col_off(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979{
Bram Moolenaar64486672010-05-16 15:46:46 +0200980 return (((wp->w_p_nu || wp->w_p_rnu) ? number_width(wp) + 1 : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 + (cmdwin_type == 0 || wp != curwin ? 0 : 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982#ifdef FEAT_FOLDING
983 + wp->w_p_fdc
984#endif
985#ifdef FEAT_SIGNS
Bram Moolenaar95ec9d62016-08-12 18:29:59 +0200986 + (signcolumn_on(wp) ? 2 : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987#endif
988 );
989}
990
991 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100992curwin_col_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993{
994 return win_col_off(curwin);
995}
996
997/*
998 * Return the difference in column offset for the second screen line of a
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +0100999 * wrapped line. It's positive if 'number' or 'relativenumber' is on and 'n'
1000 * is in 'cpoptions'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 */
1002 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001003win_col_off2(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004{
Bram Moolenaar64486672010-05-16 15:46:46 +02001005 if ((wp->w_p_nu || wp->w_p_rnu) && vim_strchr(p_cpo, CPO_NUMCOL) != NULL)
Bram Moolenaar592e0a22004-07-03 16:05:59 +00001006 return number_width(wp) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 return 0;
1008}
1009
1010 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001011curwin_col_off2(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012{
1013 return win_col_off2(curwin);
1014}
1015
1016/*
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001017 * Compute curwin->w_wcol and curwin->w_virtcol.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 * Also updates curwin->w_wrow and curwin->w_cline_row.
1019 * Also updates curwin->w_leftcol.
1020 */
1021 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001022curs_columns(
Bram Moolenaar85a20022019-12-21 18:25:54 +01001023 int may_scroll) // when TRUE, may scroll horizontally
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024{
1025 int diff;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001026 int extra; // offset for first screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 int off_left, off_right;
1028 int n;
1029 int p_lines;
1030 int width = 0;
1031 int textwidth;
1032 int new_leftcol;
1033 colnr_T startcol;
1034 colnr_T endcol;
1035 colnr_T prev_skipcol;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01001036 long so = get_scrolloff_value();
1037 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038
1039 /*
1040 * First make sure that w_topline is valid (after moving the cursor).
1041 */
Luuk van Baal13ece2a2022-10-03 15:28:08 +01001042 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043
1044 /*
1045 * Next make sure that w_cline_row is valid.
1046 */
1047 if (!(curwin->w_valid & VALID_CROW))
Bram Moolenaar3f9be972014-12-13 21:09:57 +01001048 curs_rows(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001050#ifdef FEAT_PROP_POPUP
1051 // will be set by getvvcol() but not reset
1052 curwin->w_virtcol_first_char = 0;
1053#endif
1054
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 /*
1056 * Compute the number of virtual columns.
1057 */
1058#ifdef FEAT_FOLDING
1059 if (curwin->w_cline_folded)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001060 // In a folded line the cursor is always in the first column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 startcol = curwin->w_virtcol = endcol = curwin->w_leftcol;
1062 else
1063#endif
1064 getvvcol(curwin, &curwin->w_cursor,
1065 &startcol, &(curwin->w_virtcol), &endcol);
1066
Bram Moolenaar85a20022019-12-21 18:25:54 +01001067 // remove '$' from change command when cursor moves onto it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 if (startcol > dollar_vcol)
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001069 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070
1071 extra = curwin_col_off();
1072 curwin->w_wcol = curwin->w_virtcol + extra;
1073 endcol += extra;
1074
1075 /*
1076 * Now compute w_wrow, counting screen lines from w_cline_row.
1077 */
1078 curwin->w_wrow = curwin->w_cline_row;
1079
Bram Moolenaar02631462017-09-22 15:20:32 +02001080 textwidth = curwin->w_width - extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 if (textwidth <= 0)
1082 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001083 // No room for text, put cursor in last char of window.
Bram Moolenaar30441bb2021-07-08 13:19:31 +02001084 // If not wrapping, the last non-empty line.
Bram Moolenaar02631462017-09-22 15:20:32 +02001085 curwin->w_wcol = curwin->w_width - 1;
Bram Moolenaar30441bb2021-07-08 13:19:31 +02001086 if (curwin->w_p_wrap)
1087 curwin->w_wrow = curwin->w_height - 1;
1088 else
1089 curwin->w_wrow = curwin->w_height - 1 - curwin->w_empty_rows;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02001091 else if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 {
1093 width = textwidth + curwin_col_off2();
1094
Bram Moolenaar85a20022019-12-21 18:25:54 +01001095 // long line wrapping, adjust curwin->w_wrow
Bram Moolenaar02631462017-09-22 15:20:32 +02001096 if (curwin->w_wcol >= curwin->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 {
Bram Moolenaar439b3ac2019-11-10 01:32:12 +01001098#ifdef FEAT_LINEBREAK
Bram Moolenaaree857022019-11-09 23:26:40 +01001099 char_u *sbr;
Bram Moolenaar439b3ac2019-11-10 01:32:12 +01001100#endif
Bram Moolenaaree857022019-11-09 23:26:40 +01001101
Bram Moolenaar85a20022019-12-21 18:25:54 +01001102 // this same formula is used in validate_cursor_col()
Bram Moolenaar02631462017-09-22 15:20:32 +02001103 n = (curwin->w_wcol - curwin->w_width) / width + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104 curwin->w_wcol -= n * width;
1105 curwin->w_wrow += n;
1106
1107#ifdef FEAT_LINEBREAK
Bram Moolenaar85a20022019-12-21 18:25:54 +01001108 // When cursor wraps to first char of next line in Insert
1109 // mode, the 'showbreak' string isn't shown, backup to first
1110 // column
Bram Moolenaaree857022019-11-09 23:26:40 +01001111 sbr = get_showbreak_value(curwin);
1112 if (*sbr && *ml_get_cursor() == NUL
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +01001113 && curwin->w_wcol == vim_strsize(sbr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 curwin->w_wcol = 0;
1115#endif
1116 }
1117 }
1118
Bram Moolenaar85a20022019-12-21 18:25:54 +01001119 // No line wrapping: compute curwin->w_leftcol if scrolling is on and line
1120 // is not folded.
1121 // If scrolling is off, curwin->w_leftcol is assumed to be 0
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001122 else if (may_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123#ifdef FEAT_FOLDING
1124 && !curwin->w_cline_folded
1125#endif
1126 )
1127 {
Bram Moolenaarc9dc03f2022-09-12 17:51:07 +01001128#ifdef FEAT_PROP_POPUP
1129 if (curwin->w_virtcol_first_char > 0)
1130 {
1131 int cols = (curwin->w_width - extra);
1132 int rows = cols > 0 ? curwin->w_virtcol_first_char / cols : 1;
1133
1134 // each "above" text prop shifts the text one row down
1135 curwin->w_wrow += rows;
1136 curwin->w_wcol -= rows * cols;
1137 endcol -= rows * cols;
1138 curwin->w_cline_height = rows + 1;
1139 }
1140#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 /*
1142 * If Cursor is left of the screen, scroll rightwards.
1143 * If Cursor is right of the screen, scroll leftwards
1144 * If we get closer to the edge than 'sidescrolloff', scroll a little
1145 * extra
1146 */
Bram Moolenaar375e3392019-01-31 18:26:10 +01001147 off_left = (int)startcol - (int)curwin->w_leftcol - siso;
Bram Moolenaar02631462017-09-22 15:20:32 +02001148 off_right = (int)endcol - (int)(curwin->w_leftcol + curwin->w_width
Bram Moolenaar375e3392019-01-31 18:26:10 +01001149 - siso) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 if (off_left < 0 || off_right > 0)
1151 {
1152 if (off_left < 0)
1153 diff = -off_left;
1154 else
1155 diff = off_right;
1156
Bram Moolenaar85a20022019-12-21 18:25:54 +01001157 // When far off or not enough room on either side, put cursor in
1158 // middle of window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 if (p_ss == 0 || diff >= textwidth / 2 || off_right >= off_left)
1160 new_leftcol = curwin->w_wcol - extra - textwidth / 2;
1161 else
1162 {
1163 if (diff < p_ss)
1164 diff = p_ss;
1165 if (off_left < 0)
1166 new_leftcol = curwin->w_leftcol - diff;
1167 else
1168 new_leftcol = curwin->w_leftcol + diff;
1169 }
1170 if (new_leftcol < 0)
1171 new_leftcol = 0;
1172 if (new_leftcol != (int)curwin->w_leftcol)
1173 {
1174 curwin->w_leftcol = new_leftcol;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001175 // screen has to be redrawn with new curwin->w_leftcol
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001176 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 }
1178 }
1179 curwin->w_wcol -= curwin->w_leftcol;
1180 }
1181 else if (curwin->w_wcol > (int)curwin->w_leftcol)
1182 curwin->w_wcol -= curwin->w_leftcol;
1183 else
1184 curwin->w_wcol = 0;
1185
1186#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01001187 // Skip over filler lines. At the top use w_topfill, there
1188 // may be some filler lines above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 if (curwin->w_cursor.lnum == curwin->w_topline)
1190 curwin->w_wrow += curwin->w_topfill;
1191 else
1192 curwin->w_wrow += diff_check_fill(curwin, curwin->w_cursor.lnum);
1193#endif
1194
1195 prev_skipcol = curwin->w_skipcol;
1196
1197 p_lines = 0;
Bram Moolenaar375e3392019-01-31 18:26:10 +01001198
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 if ((curwin->w_wrow >= curwin->w_height
1200 || ((prev_skipcol > 0
Bram Moolenaar375e3392019-01-31 18:26:10 +01001201 || curwin->w_wrow + so >= curwin->w_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 && (p_lines =
1203#ifdef FEAT_DIFF
1204 plines_win_nofill
1205#else
1206 plines_win
1207#endif
1208 (curwin, curwin->w_cursor.lnum, FALSE))
1209 - 1 >= curwin->w_height))
1210 && curwin->w_height != 0
1211 && curwin->w_cursor.lnum == curwin->w_topline
1212 && width > 0
Bram Moolenaar4033c552017-09-16 20:54:51 +02001213 && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001215 // Cursor past end of screen. Happens with a single line that does
1216 // not fit on screen. Find a skipcol to show the text around the
1217 // cursor. Avoid scrolling all the time. compute value of "extra":
1218 // 1: Less than 'scrolloff' lines above
1219 // 2: Less than 'scrolloff' lines below
1220 // 3: both of them
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 extra = 0;
Bram Moolenaar375e3392019-01-31 18:26:10 +01001222 if (curwin->w_skipcol + so * width > curwin->w_virtcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 extra = 1;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001224 // Compute last display line of the buffer line that we want at the
1225 // bottom of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 if (p_lines == 0)
1227 p_lines = plines_win(curwin, curwin->w_cursor.lnum, FALSE);
1228 --p_lines;
Bram Moolenaar375e3392019-01-31 18:26:10 +01001229 if (p_lines > curwin->w_wrow + so)
1230 n = curwin->w_wrow + so;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 else
1232 n = p_lines;
Bram Moolenaar8f33ebf2021-02-10 21:10:12 +01001233 if ((colnr_T)n >= curwin->w_height + curwin->w_skipcol / width - so)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 extra += 2;
1235
Bram Moolenaar8f33ebf2021-02-10 21:10:12 +01001236 if (extra == 3 || p_lines <= so * 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001238 // not enough room for 'scrolloff', put cursor in the middle
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 n = curwin->w_virtcol / width;
1240 if (n > curwin->w_height / 2)
1241 n -= curwin->w_height / 2;
1242 else
1243 n = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001244 // don't skip more than necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 if (n > p_lines - curwin->w_height + 1)
1246 n = p_lines - curwin->w_height + 1;
1247 curwin->w_skipcol = n * width;
1248 }
1249 else if (extra == 1)
1250 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001251 // less than 'scrolloff' lines above, decrease skipcol
Bram Moolenaar375e3392019-01-31 18:26:10 +01001252 extra = (curwin->w_skipcol + so * width - curwin->w_virtcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 + width - 1) / width;
1254 if (extra > 0)
1255 {
1256 if ((colnr_T)(extra * width) > curwin->w_skipcol)
1257 extra = curwin->w_skipcol / width;
1258 curwin->w_skipcol -= extra * width;
1259 }
1260 }
1261 else if (extra == 2)
1262 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001263 // less than 'scrolloff' lines below, increase skipcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 endcol = (n - curwin->w_height + 1) * width;
1265 while (endcol > curwin->w_virtcol)
1266 endcol -= width;
1267 if (endcol > curwin->w_skipcol)
1268 curwin->w_skipcol = endcol;
1269 }
1270
1271 curwin->w_wrow -= curwin->w_skipcol / width;
1272 if (curwin->w_wrow >= curwin->w_height)
1273 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001274 // small window, make sure cursor is in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 extra = curwin->w_wrow - curwin->w_height + 1;
1276 curwin->w_skipcol += extra * width;
1277 curwin->w_wrow -= extra;
1278 }
1279
1280 extra = ((int)prev_skipcol - (int)curwin->w_skipcol) / width;
1281 if (extra > 0)
1282 win_ins_lines(curwin, 0, extra, FALSE, FALSE);
1283 else if (extra < 0)
Bram Moolenaarcfce7172017-08-17 20:31:48 +02001284 win_del_lines(curwin, 0, -extra, FALSE, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 }
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001286 else if (!curwin->w_p_sms)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 curwin->w_skipcol = 0;
1288 if (prev_skipcol != curwin->w_skipcol)
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001289 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001291#ifdef FEAT_SYN_HL
zeertzjq3e559cd2022-03-27 19:26:55 +01001292 redraw_for_cursorcolumn(curwin);
Bram Moolenaarb6798752014-03-27 12:11:48 +01001293#endif
Bram Moolenaare52e0c82020-02-28 22:20:10 +01001294#if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
1295 if (popup_is_popup(curwin) && curbuf->b_term != NULL)
1296 {
1297 curwin->w_wrow += popup_top_extra(curwin);
1298 curwin->w_wcol += popup_left_extra(curwin);
Bram Moolenaar6a076442020-11-15 20:32:58 +01001299 curwin->w_flags |= WFLAG_WCOL_OFF_ADDED + WFLAG_WROW_OFF_ADDED;
Bram Moolenaare52e0c82020-02-28 22:20:10 +01001300 }
Bram Moolenaar6a076442020-11-15 20:32:58 +01001301 else
1302 curwin->w_flags &= ~(WFLAG_WCOL_OFF_ADDED + WFLAG_WROW_OFF_ADDED);
Bram Moolenaare52e0c82020-02-28 22:20:10 +01001303#endif
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001304
Bram Moolenaar08f23632019-11-16 14:19:33 +01001305 // now w_leftcol is valid, avoid check_cursor_moved() thinking otherwise
1306 curwin->w_valid_leftcol = curwin->w_leftcol;
1307
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 curwin->w_valid |= VALID_WCOL|VALID_WROW|VALID_VIRTCOL;
1309}
1310
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001311#if (defined(FEAT_EVAL) || defined(FEAT_PROP_POPUP)) || defined(PROTO)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001312/*
1313 * Compute the screen position of text character at "pos" in window "wp"
1314 * The resulting values are one-based, zero when character is not visible.
1315 */
Bram Moolenaar12034e22019-08-25 22:25:02 +02001316 void
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001317textpos2screenpos(
1318 win_T *wp,
1319 pos_T *pos,
1320 int *rowp, // screen row
1321 int *scolp, // start screen column
1322 int *ccolp, // cursor screen column
1323 int *ecolp) // end screen column
1324{
1325 colnr_T scol = 0, ccol = 0, ecol = 0;
1326 int row = 0;
1327 int rowoff = 0;
1328 colnr_T coloff = 0;
1329
Bram Moolenaar189663b2021-07-21 18:04:56 +02001330 if (pos->lnum >= wp->w_topline && pos->lnum <= wp->w_botline)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001331 {
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001332 colnr_T off;
1333 colnr_T col;
1334 int width;
1335 linenr_T lnum = pos->lnum;
1336#ifdef FEAT_FOLDING
1337 int is_folded;
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001338
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001339 is_folded = hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
1340#endif
1341 row = plines_m_win(wp, wp->w_topline, lnum - 1) + 1;
1342#ifdef FEAT_FOLDING
1343 if (is_folded)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001344 {
Bram Moolenaar7924a172022-01-24 16:15:15 +00001345 row += W_WINROW(wp);
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001346 coloff = wp->w_wincol + 1;
Bram Moolenaar7924a172022-01-24 16:15:15 +00001347 }
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001348 else
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001349#endif
1350 {
1351 getvcol(wp, pos, &scol, &ccol, &ecol);
1352
1353 // similar to what is done in validate_cursor_col()
1354 col = scol;
1355 off = win_col_off(wp);
1356 col += off;
1357 width = wp->w_width - off + win_col_off2(wp);
1358
1359 // long line wrapping, adjust row
1360 if (wp->w_p_wrap
1361 && col >= (colnr_T)wp->w_width
1362 && width > 0)
1363 {
1364 // use same formula as what is used in curs_columns()
1365 rowoff = ((col - wp->w_width) / width + 1);
1366 col -= rowoff * width;
1367 }
1368 col -= wp->w_leftcol;
1369 if (col >= wp->w_width)
1370 col = -1;
1371 if (col >= 0 && row + rowoff <= wp->w_height)
1372 {
1373 coloff = col - scol + wp->w_wincol + 1;
1374 row += W_WINROW(wp);
1375 }
1376 else
1377 // character is left, right or below of the window
1378 row = rowoff = scol = ccol = ecol = 0;
1379 }
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001380 }
Bram Moolenaar7924a172022-01-24 16:15:15 +00001381 *rowp = row + rowoff;
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001382 *scolp = scol + coloff;
1383 *ccolp = ccol + coloff;
1384 *ecolp = ecol + coloff;
1385}
Bram Moolenaar12034e22019-08-25 22:25:02 +02001386#endif
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001387
Bram Moolenaar12034e22019-08-25 22:25:02 +02001388#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001389/*
1390 * "screenpos({winid}, {lnum}, {col})" function
1391 */
1392 void
1393f_screenpos(typval_T *argvars UNUSED, typval_T *rettv)
1394{
1395 dict_T *dict;
1396 win_T *wp;
1397 pos_T pos;
1398 int row = 0;
1399 int scol = 0, ccol = 0, ecol = 0;
1400
Bram Moolenaar93a10962022-06-16 11:42:09 +01001401 if (rettv_dict_alloc(rettv) == FAIL)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001402 return;
1403 dict = rettv->vval.v_dict;
1404
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02001405 if (in_vim9script()
1406 && (check_for_number_arg(argvars, 0) == FAIL
1407 || check_for_number_arg(argvars, 1) == FAIL
1408 || check_for_number_arg(argvars, 2) == FAIL))
1409 return;
1410
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001411 wp = find_win_by_nr_or_id(&argvars[0]);
1412 if (wp == NULL)
1413 return;
1414
1415 pos.lnum = tv_get_number(&argvars[1]);
1416 pos.col = tv_get_number(&argvars[2]) - 1;
1417 pos.coladd = 0;
1418 textpos2screenpos(wp, &pos, &row, &scol, &ccol, &ecol);
1419
1420 dict_add_number(dict, "row", row);
1421 dict_add_number(dict, "col", scol);
1422 dict_add_number(dict, "curscol", ccol);
1423 dict_add_number(dict, "endcol", ecol);
1424}
Bram Moolenaar5a6ec102022-05-27 21:58:00 +01001425
1426/*
1427 * "virtcol2col({winid}, {lnum}, {col})" function
1428 */
1429 void
1430f_virtcol2col(typval_T *argvars UNUSED, typval_T *rettv)
1431{
1432 win_T *wp;
1433 linenr_T lnum;
1434 int screencol;
1435 int error = FALSE;
1436
1437 rettv->vval.v_number = -1;
1438
1439 if (check_for_number_arg(argvars, 0) == FAIL
1440 || check_for_number_arg(argvars, 1) == FAIL
1441 || check_for_number_arg(argvars, 2) == FAIL)
1442 return;
1443
1444 wp = find_win_by_nr_or_id(&argvars[0]);
1445 if (wp == NULL)
1446 return;
1447
1448 lnum = tv_get_number_chk(&argvars[1], &error);
1449 if (error || lnum < 0 || lnum > wp->w_buffer->b_ml.ml_line_count)
1450 return;
1451
1452 screencol = tv_get_number_chk(&argvars[2], &error);
1453 if (error || screencol < 0)
1454 return;
1455
1456 rettv->vval.v_number = vcol2col(wp, lnum, screencol);
1457}
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001458#endif
1459
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460/*
1461 * Scroll the current window down by "line_count" logical lines. "CTRL-Y"
1462 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001464scrolldown(
1465 long line_count,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001466 int byfold UNUSED) // TRUE: count a closed fold as one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467{
Bram Moolenaar85a20022019-12-21 18:25:54 +01001468 long done = 0; // total # of physical lines done
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 int wrow;
1470 int moved = FALSE;
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001471 int do_sms = curwin->w_p_wrap && curwin->w_p_sms;
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001472 int width1 = 0;
1473 int width2 = 0;
1474
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001475 if (do_sms)
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001476 {
1477 width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001478 width2 = width1 + curwin_col_off2();
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001479 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480
1481#ifdef FEAT_FOLDING
1482 linenr_T first;
1483
Bram Moolenaar85a20022019-12-21 18:25:54 +01001484 // Make sure w_topline is at the first of a sequence of folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1486#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +01001487 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001488 for (int todo = line_count; todo > 0; --todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 {
1490#ifdef FEAT_DIFF
Bram Moolenaarfa316dd2009-11-03 15:23:14 +00001491 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)
1492 && curwin->w_topfill < curwin->w_height - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 {
1494 ++curwin->w_topfill;
1495 ++done;
1496 }
1497 else
1498#endif
1499 {
Bram Moolenaar8df97482022-10-03 12:11:13 +01001500 // break when at the very top
1501 if (curwin->w_topline == 1
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001502 && (!do_sms || curwin->w_skipcol < width1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 break;
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001504 if (do_sms && curwin->w_skipcol >= width1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 {
Bram Moolenaar8df97482022-10-03 12:11:13 +01001506 // scroll a screen line down
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001507 if (curwin->w_skipcol >= width1 + width2)
1508 curwin->w_skipcol -= width2;
1509 else
1510 curwin->w_skipcol -= width1;
1511 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 ++done;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 }
1514 else
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001515 {
Bram Moolenaar8df97482022-10-03 12:11:13 +01001516 // scroll a text line down
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001517 --curwin->w_topline;
1518 curwin->w_skipcol = 0;
1519#ifdef FEAT_DIFF
1520 curwin->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001522#ifdef FEAT_FOLDING
1523 // A sequence of folded lines only counts for one logical line
1524 if (hasFolding(curwin->w_topline, &first, NULL))
1525 {
1526 ++done;
1527 if (!byfold)
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001528 todo -= curwin->w_topline - first - 1;
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001529 curwin->w_botline -= curwin->w_topline - first;
1530 curwin->w_topline = first;
1531 }
1532 else
1533#endif
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001534 if (do_sms)
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001535 {
1536 int size = win_linetabsize(curwin, curwin->w_topline,
1537 ml_get(curwin->w_topline), (colnr_T)MAXCOL);
1538 if (size > width1)
1539 {
1540 curwin->w_skipcol = width1;
1541 size -= width1;
1542 redraw_later(UPD_NOT_VALID);
1543 }
1544 while (size > width2)
1545 {
1546 curwin->w_skipcol += width2;
1547 size -= width2;
1548 }
1549 ++done;
1550 }
1551 else
1552 done += PLINES_NOFILL(curwin->w_topline);
1553 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001555 --curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 invalidate_botline();
1557 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001558 curwin->w_wrow += done; // keep w_wrow updated
1559 curwin->w_cline_row += done; // keep w_cline_row updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560
1561#ifdef FEAT_DIFF
1562 if (curwin->w_cursor.lnum == curwin->w_topline)
1563 curwin->w_cline_row = 0;
1564 check_topfill(curwin, TRUE);
1565#endif
1566
1567 /*
1568 * Compute the row number of the last row of the cursor line
1569 * and move the cursor onto the displayed part of the window.
1570 */
1571 wrow = curwin->w_wrow;
Bram Moolenaar4033c552017-09-16 20:54:51 +02001572 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 {
1574 validate_virtcol();
1575 validate_cheight();
1576 wrow += curwin->w_cline_height - 1 -
Bram Moolenaar02631462017-09-22 15:20:32 +02001577 curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 }
1579 while (wrow >= curwin->w_height && curwin->w_cursor.lnum > 1)
1580 {
1581#ifdef FEAT_FOLDING
1582 if (hasFolding(curwin->w_cursor.lnum, &first, NULL))
1583 {
1584 --wrow;
1585 if (first == 1)
1586 curwin->w_cursor.lnum = 1;
1587 else
1588 curwin->w_cursor.lnum = first - 1;
1589 }
1590 else
1591#endif
1592 wrow -= plines(curwin->w_cursor.lnum--);
1593 curwin->w_valid &=
1594 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1595 moved = TRUE;
1596 }
1597 if (moved)
1598 {
1599#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01001600 // Move cursor to first line of closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 foldAdjustCursor();
1602#endif
1603 coladvance(curwin->w_curswant);
1604 }
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001605
1606 if (curwin->w_cursor.lnum == curwin->w_topline && do_sms)
1607 {
Bram Moolenaar118c2352022-10-09 17:19:27 +01001608 long so = curwin->w_p_so >= 0 ? curwin->w_p_so : p_so;
1609 int scrolloff_cols = so == 0 ? 0 : width1 + (so - 1) * width2;
1610
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001611 // make sure the cursor is in the visible text
1612 validate_virtcol();
Bram Moolenaar118c2352022-10-09 17:19:27 +01001613 int col = curwin->w_virtcol - curwin->w_skipcol + scrolloff_cols;
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001614 int row = 0;
1615 if (col >= width1)
1616 {
1617 col -= width1;
1618 ++row;
1619 }
1620 if (col > width2)
1621 {
1622 row += col / width2;
1623 col = col % width2;
1624 }
1625 if (row >= curwin->w_height)
Bram Moolenaar118c2352022-10-09 17:19:27 +01001626 {
1627 curwin->w_curswant = curwin->w_virtcol
1628 - (row - curwin->w_height + 1) * width2;
1629 coladvance(curwin->w_curswant);
1630 }
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632}
1633
1634/*
1635 * Scroll the current window up by "line_count" logical lines. "CTRL-E"
1636 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001638scrollup(
1639 long line_count,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001640 int byfold UNUSED) // TRUE: count a closed fold as one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641{
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001642 int do_sms = curwin->w_p_wrap && curwin->w_p_sms;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001644 if (do_sms
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645# ifdef FEAT_FOLDING
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001646 || (byfold && hasAnyFolding(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647# endif
1648# ifdef FEAT_DIFF
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001649 || curwin->w_p_diff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650# endif
1651 )
1652 {
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001653 int width1 = curwin->w_width - curwin_col_off();
1654 int width2 = width1 + curwin_col_off2();
1655 int size = 0;
1656 linenr_T prev_topline = curwin->w_topline;
1657
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001658 if (do_sms)
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001659 size = win_linetabsize(curwin, curwin->w_topline,
1660 ml_get(curwin->w_topline), (colnr_T)MAXCOL);
1661
1662 // diff mode: first consume "topfill"
1663 // 'smoothscroll': increase "w_skipcol" until it goes over the end of
1664 // the line, then advance to the next line.
1665 // folding: count each sequence of folded lines as one logical line.
1666 for (int todo = line_count; todo > 0; --todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 {
1668# ifdef FEAT_DIFF
1669 if (curwin->w_topfill > 0)
1670 --curwin->w_topfill;
1671 else
1672# endif
1673 {
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001674 linenr_T lnum = curwin->w_topline;
1675
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676# ifdef FEAT_FOLDING
1677 if (byfold)
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001678 // for a closed fold: go to the last line in the fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 (void)hasFolding(lnum, NULL, &lnum);
1680# endif
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001681 if (lnum == curwin->w_topline && do_sms)
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001682 {
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001683 // 'smoothscroll': increase "w_skipcol" until it goes over
1684 // the end of the line, then advance to the next line.
1685 int add = curwin->w_skipcol > 0 ? width2 : width1;
1686 curwin->w_skipcol += add;
1687 if (curwin->w_skipcol >= size)
1688 {
1689 if (lnum == curbuf->b_ml.ml_line_count)
1690 {
1691 // at the last screen line, can't scroll further
1692 curwin->w_skipcol -= add;
1693 break;
1694 }
1695 ++lnum;
1696 }
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001697 }
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001698 else
1699 {
1700 if (lnum >= curbuf->b_ml.ml_line_count)
1701 break;
1702 ++lnum;
1703 }
1704
1705 if (lnum > curwin->w_topline)
1706 {
1707 // approximate w_botline
1708 curwin->w_botline += lnum - curwin->w_topline;
1709 curwin->w_topline = lnum;
1710# ifdef FEAT_DIFF
1711 curwin->w_topfill = diff_check_fill(curwin, lnum);
1712# endif
1713 curwin->w_skipcol = 0;
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001714 if (todo > 1 && do_sms)
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001715 size = win_linetabsize(curwin, curwin->w_topline,
1716 ml_get(curwin->w_topline), (colnr_T)MAXCOL);
1717 }
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001718 }
1719 }
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001720
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001721 if (curwin->w_topline == prev_topline)
1722 // need to redraw even though w_topline didn't change
1723 redraw_later(UPD_NOT_VALID);
1724 }
1725 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 {
1727 curwin->w_topline += line_count;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001728 curwin->w_botline += line_count; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 }
1730
1731 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
1732 curwin->w_topline = curbuf->b_ml.ml_line_count;
1733 if (curwin->w_botline > curbuf->b_ml.ml_line_count + 1)
1734 curwin->w_botline = curbuf->b_ml.ml_line_count + 1;
1735
1736#ifdef FEAT_DIFF
1737 check_topfill(curwin, FALSE);
1738#endif
1739
1740#ifdef FEAT_FOLDING
1741 if (hasAnyFolding(curwin))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001742 // Make sure w_topline is at the first of a sequence of folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1744#endif
1745
1746 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1747 if (curwin->w_cursor.lnum < curwin->w_topline)
1748 {
1749 curwin->w_cursor.lnum = curwin->w_topline;
1750 curwin->w_valid &=
1751 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1752 coladvance(curwin->w_curswant);
1753 }
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001754 if (curwin->w_cursor.lnum == curwin->w_topline
1755 && do_sms && curwin->w_skipcol > 0)
1756 {
Bram Moolenaar118c2352022-10-09 17:19:27 +01001757 int width1 = curwin->w_width - curwin_col_off();
1758 int width2 = width1 + curwin_col_off2();
1759 long so = curwin->w_p_so >= 0 ? curwin->w_p_so : p_so;
1760 int scrolloff_cols = so == 0 ? 0 : width1 + (so - 1) * width2;
1761
1762 // Make sure the cursor is in a visible part of the line, taking
1763 // 'scrolloff' into account, but using screen lines.
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001764 validate_virtcol();
Bram Moolenaar118c2352022-10-09 17:19:27 +01001765 if (curwin->w_virtcol < curwin->w_skipcol + 3 + scrolloff_cols)
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001766 {
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001767 colnr_T col = curwin->w_virtcol;
1768
1769 if (col < width1)
1770 col += width1;
Bram Moolenaar118c2352022-10-09 17:19:27 +01001771 while (col < curwin->w_skipcol + 3 + scrolloff_cols)
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001772 col += width2;
Bram Moolenaar118c2352022-10-09 17:19:27 +01001773 curwin->w_curswant = col;
1774 coladvance(curwin->w_curswant);
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001775 }
1776 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777}
1778
1779#ifdef FEAT_DIFF
1780/*
1781 * Don't end up with too many filler lines in the window.
1782 */
1783 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001784check_topfill(
1785 win_T *wp,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001786 int down) // when TRUE scroll down when not enough space
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787{
1788 int n;
1789
1790 if (wp->w_topfill > 0)
1791 {
1792 n = plines_win_nofill(wp, wp->w_topline, TRUE);
1793 if (wp->w_topfill + n > wp->w_height)
1794 {
1795 if (down && wp->w_topline > 1)
1796 {
1797 --wp->w_topline;
1798 wp->w_topfill = 0;
1799 }
1800 else
1801 {
1802 wp->w_topfill = wp->w_height - n;
1803 if (wp->w_topfill < 0)
1804 wp->w_topfill = 0;
1805 }
1806 }
1807 }
1808}
1809
1810/*
1811 * Use as many filler lines as possible for w_topline. Make sure w_topline
1812 * is still visible.
1813 */
1814 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001815max_topfill(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816{
1817 int n;
1818
1819 n = plines_nofill(curwin->w_topline);
1820 if (n >= curwin->w_height)
1821 curwin->w_topfill = 0;
1822 else
1823 {
1824 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
1825 if (curwin->w_topfill + n > curwin->w_height)
1826 curwin->w_topfill = curwin->w_height - n;
1827 }
1828}
1829#endif
1830
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831/*
1832 * Scroll the screen one line down, but don't do it if it would move the
1833 * cursor off the screen.
1834 */
1835 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001836scrolldown_clamp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837{
1838 int end_row;
1839#ifdef FEAT_DIFF
1840 int can_fill = (curwin->w_topfill
1841 < diff_check_fill(curwin, curwin->w_topline));
1842#endif
1843
1844 if (curwin->w_topline <= 1
1845#ifdef FEAT_DIFF
1846 && !can_fill
1847#endif
1848 )
1849 return;
1850
Bram Moolenaar85a20022019-12-21 18:25:54 +01001851 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852
1853 /*
1854 * Compute the row number of the last row of the cursor line
1855 * and make sure it doesn't go off the screen. Make sure the cursor
1856 * doesn't go past 'scrolloff' lines from the screen end.
1857 */
1858 end_row = curwin->w_wrow;
1859#ifdef FEAT_DIFF
1860 if (can_fill)
1861 ++end_row;
1862 else
1863 end_row += plines_nofill(curwin->w_topline - 1);
1864#else
1865 end_row += plines(curwin->w_topline - 1);
1866#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001867 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 {
1869 validate_cheight();
1870 validate_virtcol();
1871 end_row += curwin->w_cline_height - 1 -
Bram Moolenaar02631462017-09-22 15:20:32 +02001872 curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 }
Bram Moolenaar375e3392019-01-31 18:26:10 +01001874 if (end_row < curwin->w_height - get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 {
1876#ifdef FEAT_DIFF
1877 if (can_fill)
1878 {
1879 ++curwin->w_topfill;
1880 check_topfill(curwin, TRUE);
1881 }
1882 else
1883 {
1884 --curwin->w_topline;
1885 curwin->w_topfill = 0;
1886 }
1887#else
1888 --curwin->w_topline;
1889#endif
1890#ifdef FEAT_FOLDING
Bram Moolenaarcde88542015-08-11 19:14:00 +02001891 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +01001893 --curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1895 }
1896}
1897
1898/*
1899 * Scroll the screen one line up, but don't do it if it would move the cursor
1900 * off the screen.
1901 */
1902 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001903scrollup_clamp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904{
1905 int start_row;
1906
1907 if (curwin->w_topline == curbuf->b_ml.ml_line_count
1908#ifdef FEAT_DIFF
1909 && curwin->w_topfill == 0
1910#endif
1911 )
1912 return;
1913
Bram Moolenaar85a20022019-12-21 18:25:54 +01001914 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915
1916 /*
1917 * Compute the row number of the first row of the cursor line
1918 * and make sure it doesn't go off the screen. Make sure the cursor
1919 * doesn't go before 'scrolloff' lines from the screen start.
1920 */
1921#ifdef FEAT_DIFF
1922 start_row = curwin->w_wrow - plines_nofill(curwin->w_topline)
1923 - curwin->w_topfill;
1924#else
1925 start_row = curwin->w_wrow - plines(curwin->w_topline);
1926#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001927 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 {
1929 validate_virtcol();
Bram Moolenaar02631462017-09-22 15:20:32 +02001930 start_row -= curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 }
Bram Moolenaar375e3392019-01-31 18:26:10 +01001932 if (start_row >= get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 {
1934#ifdef FEAT_DIFF
1935 if (curwin->w_topfill > 0)
1936 --curwin->w_topfill;
1937 else
1938#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001939 {
1940#ifdef FEAT_FOLDING
1941 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
1942#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 ++curwin->w_topline;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001944 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001945 ++curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1947 }
1948}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949
1950/*
1951 * Add one line above "lp->lnum". This can be a filler line, a closed fold or
1952 * a (wrapped) text line. Uses and sets "lp->fill".
1953 * Returns the height of the added line in "lp->height".
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01001954 * Lines above the first one are incredibly high: MAXCOL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 */
1956 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001957topline_back(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958{
1959#ifdef FEAT_DIFF
1960 if (lp->fill < diff_check_fill(curwin, lp->lnum))
1961 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001962 // Add a filler line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 ++lp->fill;
1964 lp->height = 1;
1965 }
1966 else
1967#endif
1968 {
1969 --lp->lnum;
1970#ifdef FEAT_DIFF
1971 lp->fill = 0;
1972#endif
1973 if (lp->lnum < 1)
1974 lp->height = MAXCOL;
1975 else
1976#ifdef FEAT_FOLDING
1977 if (hasFolding(lp->lnum, &lp->lnum, NULL))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001978 // Add a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 lp->height = 1;
1980 else
1981#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02001982 lp->height = PLINES_NOFILL(lp->lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 }
1984}
1985
1986/*
1987 * Add one line below "lp->lnum". This can be a filler line, a closed fold or
1988 * a (wrapped) text line. Uses and sets "lp->fill".
1989 * Returns the height of the added line in "lp->height".
1990 * Lines below the last one are incredibly high.
1991 */
1992 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001993botline_forw(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994{
1995#ifdef FEAT_DIFF
1996 if (lp->fill < diff_check_fill(curwin, lp->lnum + 1))
1997 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001998 // Add a filler line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 ++lp->fill;
2000 lp->height = 1;
2001 }
2002 else
2003#endif
2004 {
2005 ++lp->lnum;
2006#ifdef FEAT_DIFF
2007 lp->fill = 0;
2008#endif
2009 if (lp->lnum > curbuf->b_ml.ml_line_count)
2010 lp->height = MAXCOL;
2011 else
2012#ifdef FEAT_FOLDING
2013 if (hasFolding(lp->lnum, NULL, &lp->lnum))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002014 // Add a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 lp->height = 1;
2016 else
2017#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002018 lp->height = PLINES_NOFILL(lp->lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 }
2020}
2021
2022#ifdef FEAT_DIFF
2023/*
2024 * Switch from including filler lines below lp->lnum to including filler
2025 * lines above loff.lnum + 1. This keeps pointing to the same line.
2026 * When there are no filler lines nothing changes.
2027 */
2028 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002029botline_topline(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030{
2031 if (lp->fill > 0)
2032 {
2033 ++lp->lnum;
2034 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
2035 }
2036}
2037
2038/*
2039 * Switch from including filler lines above lp->lnum to including filler
2040 * lines below loff.lnum - 1. This keeps pointing to the same line.
2041 * When there are no filler lines nothing changes.
2042 */
2043 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002044topline_botline(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045{
2046 if (lp->fill > 0)
2047 {
2048 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
2049 --lp->lnum;
2050 }
2051}
2052#endif
2053
2054/*
2055 * Recompute topline to put the cursor at the top of the window.
2056 * Scroll at least "min_scroll" lines.
2057 * If "always" is TRUE, always set topline (for "zt").
2058 */
2059 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002060scroll_cursor_top(int min_scroll, int always)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061{
2062 int scrolled = 0;
2063 int extra = 0;
2064 int used;
2065 int i;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002066 linenr_T top; // just above displayed lines
2067 linenr_T bot; // just below displayed lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar46b54742022-10-06 15:46:49 +01002069 int old_skipcol = curwin->w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070#ifdef FEAT_DIFF
2071 linenr_T old_topfill = curwin->w_topfill;
2072#endif
2073 linenr_T new_topline;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002074 int off = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 if (mouse_dragging > 0)
2077 off = mouse_dragging - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078
2079 /*
2080 * Decrease topline until:
2081 * - it has become 1
2082 * - (part of) the cursor line is moved off the screen or
2083 * - moved at least 'scrolljump' lines and
2084 * - at least 'scrolloff' lines above and below the cursor
2085 */
2086 validate_cheight();
Bram Moolenaar85a20022019-12-21 18:25:54 +01002087 used = curwin->w_cline_height; // includes filler lines above
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 if (curwin->w_cursor.lnum < curwin->w_topline)
2089 scrolled = used;
2090
2091#ifdef FEAT_FOLDING
2092 if (hasFolding(curwin->w_cursor.lnum, &top, &bot))
2093 {
2094 --top;
2095 ++bot;
2096 }
2097 else
2098#endif
2099 {
2100 top = curwin->w_cursor.lnum - 1;
2101 bot = curwin->w_cursor.lnum + 1;
2102 }
2103 new_topline = top + 1;
2104
2105#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002106 // "used" already contains the number of filler lines above, don't add it
2107 // again.
2108 // Hide filler lines above cursor line by adding them to "extra".
Bram Moolenaara09a2c52015-09-08 17:31:59 +02002109 extra += diff_check_fill(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110#endif
2111
2112 /*
2113 * Check if the lines from "top" to "bot" fit in the window. If they do,
2114 * set new_topline and advance "top" and "bot" to include more lines.
2115 */
2116 while (top > 0)
2117 {
2118#ifdef FEAT_FOLDING
2119 if (hasFolding(top, &top, NULL))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002120 // count one logical line for a sequence of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 i = 1;
2122 else
2123#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002124 i = PLINES_NOFILL(top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 used += i;
2126 if (extra + i <= off && bot < curbuf->b_ml.ml_line_count)
2127 {
2128#ifdef FEAT_FOLDING
2129 if (hasFolding(bot, NULL, &bot))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002130 // count one logical line for a sequence of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 ++used;
2132 else
2133#endif
2134 used += plines(bot);
2135 }
2136 if (used > curwin->w_height)
2137 break;
2138 if (top < curwin->w_topline)
2139 scrolled += i;
2140
2141 /*
2142 * If scrolling is needed, scroll at least 'sj' lines.
2143 */
2144 if ((new_topline >= curwin->w_topline || scrolled > min_scroll)
2145 && extra >= off)
2146 break;
2147
2148 extra += i;
2149 new_topline = top;
2150 --top;
2151 ++bot;
2152 }
2153
2154 /*
2155 * If we don't have enough space, put cursor in the middle.
2156 * This makes sure we get the same position when using "k" and "j"
2157 * in a small window.
2158 */
2159 if (used > curwin->w_height)
2160 scroll_cursor_halfway(FALSE);
2161 else
2162 {
2163 /*
2164 * If "always" is FALSE, only adjust topline to a lower value, higher
2165 * value may happen with wrapping lines
2166 */
2167 if (new_topline < curwin->w_topline || always)
2168 curwin->w_topline = new_topline;
2169 if (curwin->w_topline > curwin->w_cursor.lnum)
2170 curwin->w_topline = curwin->w_cursor.lnum;
2171#ifdef FEAT_DIFF
2172 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
2173 if (curwin->w_topfill > 0 && extra > off)
2174 {
2175 curwin->w_topfill -= extra - off;
2176 if (curwin->w_topfill < 0)
2177 curwin->w_topfill = 0;
2178 }
2179 check_topfill(curwin, FALSE);
2180#endif
Bram Moolenaar46b54742022-10-06 15:46:49 +01002181 // TODO: if the line doesn't fit may optimize w_skipcol
2182 if (curwin->w_topline == curwin->w_cursor.lnum)
2183 {
2184 curwin->w_skipcol = 0;
2185 redraw_later(UPD_NOT_VALID);
2186 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 if (curwin->w_topline != old_topline
Bram Moolenaar46b54742022-10-06 15:46:49 +01002188 || curwin->w_skipcol != old_skipcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189#ifdef FEAT_DIFF
2190 || curwin->w_topfill != old_topfill
2191#endif
2192 )
2193 curwin->w_valid &=
2194 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2195 curwin->w_valid |= VALID_TOPLINE;
2196 }
2197}
2198
2199/*
2200 * Set w_empty_rows and w_filler_rows for window "wp", having used up "used"
2201 * screen lines for text lines.
2202 */
2203 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002204set_empty_rows(win_T *wp, int used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205{
2206#ifdef FEAT_DIFF
2207 wp->w_filler_rows = 0;
2208#endif
2209 if (used == 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002210 wp->w_empty_rows = 0; // single line that doesn't fit
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 else
2212 {
2213 wp->w_empty_rows = wp->w_height - used;
2214#ifdef FEAT_DIFF
2215 if (wp->w_botline <= wp->w_buffer->b_ml.ml_line_count)
2216 {
2217 wp->w_filler_rows = diff_check_fill(wp, wp->w_botline);
2218 if (wp->w_empty_rows > wp->w_filler_rows)
2219 wp->w_empty_rows -= wp->w_filler_rows;
2220 else
2221 {
2222 wp->w_filler_rows = wp->w_empty_rows;
2223 wp->w_empty_rows = 0;
2224 }
2225 }
2226#endif
2227 }
2228}
2229
2230/*
2231 * Recompute topline to put the cursor at the bottom of the window.
Bram Moolenaar8088ae92022-06-20 11:38:17 +01002232 * When scrolling scroll at least "min_scroll" lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 * If "set_topbot" is TRUE, set topline and botline first (for "zb").
2234 * This is messy stuff!!!
2235 */
2236 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002237scroll_cursor_bot(int min_scroll, int set_topbot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238{
2239 int used;
2240 int scrolled = 0;
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002241 int min_scrolled = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 int extra = 0;
2243 int i;
2244 linenr_T line_count;
2245 linenr_T old_topline = curwin->w_topline;
2246 lineoff_T loff;
2247 lineoff_T boff;
2248#ifdef FEAT_DIFF
2249 int old_topfill = curwin->w_topfill;
2250 int fill_below_window;
2251#endif
2252 linenr_T old_botline = curwin->w_botline;
2253 linenr_T old_valid = curwin->w_valid;
2254 int old_empty_rows = curwin->w_empty_rows;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002255 linenr_T cln; // Cursor Line Number
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002256 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257
2258 cln = curwin->w_cursor.lnum;
2259 if (set_topbot)
2260 {
2261 used = 0;
2262 curwin->w_botline = cln + 1;
2263#ifdef FEAT_DIFF
2264 loff.fill = 0;
2265#endif
2266 for (curwin->w_topline = curwin->w_botline;
2267 curwin->w_topline > 1;
2268 curwin->w_topline = loff.lnum)
2269 {
2270 loff.lnum = curwin->w_topline;
2271 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002272 if (loff.height == MAXCOL || used + loff.height > curwin->w_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 break;
2274 used += loff.height;
2275#ifdef FEAT_DIFF
2276 curwin->w_topfill = loff.fill;
2277#endif
2278 }
2279 set_empty_rows(curwin, used);
2280 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
2281 if (curwin->w_topline != old_topline
2282#ifdef FEAT_DIFF
2283 || curwin->w_topfill != old_topfill
2284#endif
2285 )
2286 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2287 }
2288 else
2289 validate_botline();
2290
Bram Moolenaar85a20022019-12-21 18:25:54 +01002291 // The lines of the cursor line itself are always used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292#ifdef FEAT_DIFF
2293 used = plines_nofill(cln);
2294#else
2295 validate_cheight();
2296 used = curwin->w_cline_height;
2297#endif
2298
Bram Moolenaar85a20022019-12-21 18:25:54 +01002299 // If the cursor is below botline, we will at least scroll by the height
2300 // of the cursor line. Correct for empty lines, which are really part of
2301 // botline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 if (cln >= curwin->w_botline)
2303 {
2304 scrolled = used;
2305 if (cln == curwin->w_botline)
2306 scrolled -= curwin->w_empty_rows;
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002307 min_scrolled = scrolled;
2308 if (cln > curwin->w_botline && curwin->w_p_sms && curwin->w_p_wrap)
2309 for (linenr_T lnum = curwin->w_botline + 1; lnum <= cln; ++lnum)
Bram Moolenaar4d31b482022-10-06 16:03:09 +01002310 min_scrolled += PLINES_NOFILL(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 }
2312
2313 /*
2314 * Stop counting lines to scroll when
2315 * - hitting start of the file
2316 * - scrolled nothing or at least 'sj' lines
Bram Moolenaar375e3392019-01-31 18:26:10 +01002317 * - at least 'scrolloff' lines below the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 * - lines between botline and cursor have been counted
2319 */
2320#ifdef FEAT_FOLDING
2321 if (!hasFolding(curwin->w_cursor.lnum, &loff.lnum, &boff.lnum))
2322#endif
2323 {
2324 loff.lnum = cln;
2325 boff.lnum = cln;
2326 }
2327#ifdef FEAT_DIFF
2328 loff.fill = 0;
2329 boff.fill = 0;
2330 fill_below_window = diff_check_fill(curwin, curwin->w_botline)
2331 - curwin->w_filler_rows;
2332#endif
2333
2334 while (loff.lnum > 1)
2335 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002336 // Stop when scrolled nothing or at least "min_scroll", found "extra"
2337 // context for 'scrolloff' and counted all lines below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 if ((((scrolled <= 0 || scrolled >= min_scroll)
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002339 && extra >= (mouse_dragging > 0 ? mouse_dragging - 1 : so))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 || boff.lnum + 1 > curbuf->b_ml.ml_line_count)
2341 && loff.lnum <= curwin->w_botline
2342#ifdef FEAT_DIFF
2343 && (loff.lnum < curwin->w_botline
2344 || loff.fill >= fill_below_window)
2345#endif
2346 )
2347 break;
2348
Bram Moolenaar85a20022019-12-21 18:25:54 +01002349 // Add one line above
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002351 if (loff.height == MAXCOL)
2352 used = MAXCOL;
2353 else
2354 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 if (used > curwin->w_height)
2356 break;
2357 if (loff.lnum >= curwin->w_botline
2358#ifdef FEAT_DIFF
2359 && (loff.lnum > curwin->w_botline
2360 || loff.fill <= fill_below_window)
2361#endif
2362 )
2363 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002364 // Count screen lines that are below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 scrolled += loff.height;
2366 if (loff.lnum == curwin->w_botline
2367#ifdef FEAT_DIFF
Bram Moolenaar4e303c82018-11-24 14:27:44 +01002368 && loff.fill == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369#endif
2370 )
2371 scrolled -= curwin->w_empty_rows;
2372 }
2373
2374 if (boff.lnum < curbuf->b_ml.ml_line_count)
2375 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002376 // Add one line below
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 botline_forw(&boff);
2378 used += boff.height;
2379 if (used > curwin->w_height)
2380 break;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002381 if (extra < ( mouse_dragging > 0 ? mouse_dragging - 1 : so)
2382 || scrolled < min_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 {
2384 extra += boff.height;
2385 if (boff.lnum >= curwin->w_botline
2386#ifdef FEAT_DIFF
2387 || (boff.lnum + 1 == curwin->w_botline
2388 && boff.fill > curwin->w_filler_rows)
2389#endif
2390 )
2391 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002392 // Count screen lines that are below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 scrolled += boff.height;
2394 if (boff.lnum == curwin->w_botline
2395#ifdef FEAT_DIFF
2396 && boff.fill == 0
2397#endif
2398 )
2399 scrolled -= curwin->w_empty_rows;
2400 }
2401 }
2402 }
2403 }
2404
Bram Moolenaar85a20022019-12-21 18:25:54 +01002405 // curwin->w_empty_rows is larger, no need to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 if (scrolled <= 0)
2407 line_count = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002408 // more than a screenfull, don't scroll but redraw
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 else if (used > curwin->w_height)
2410 line_count = used;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002411 // scroll minimal number of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 else
2413 {
2414 line_count = 0;
2415#ifdef FEAT_DIFF
2416 boff.fill = curwin->w_topfill;
2417#endif
2418 boff.lnum = curwin->w_topline - 1;
2419 for (i = 0; i < scrolled && boff.lnum < curwin->w_botline; )
2420 {
2421 botline_forw(&boff);
2422 i += boff.height;
2423 ++line_count;
2424 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002425 if (i < scrolled) // below curwin->w_botline, don't scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 line_count = 9999;
2427 }
2428
2429 /*
2430 * Scroll up if the cursor is off the bottom of the screen a bit.
2431 * Otherwise put it at 1/2 of the screen.
2432 */
2433 if (line_count >= curwin->w_height && line_count > min_scroll)
2434 scroll_cursor_halfway(FALSE);
2435 else
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002436 {
2437 // With 'smoothscroll' scroll at least the height of the cursor line.
2438 if (curwin->w_p_wrap && curwin->w_p_sms && line_count < min_scrolled)
2439 line_count = min_scrolled;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 scrollup(line_count, TRUE);
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002441 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442
2443 /*
2444 * If topline didn't change we need to restore w_botline and w_empty_rows
2445 * (we changed them).
2446 * If topline did change, update_screen() will set botline.
2447 */
2448 if (curwin->w_topline == old_topline && set_topbot)
2449 {
2450 curwin->w_botline = old_botline;
2451 curwin->w_empty_rows = old_empty_rows;
2452 curwin->w_valid = old_valid;
2453 }
2454 curwin->w_valid |= VALID_TOPLINE;
2455}
2456
2457/*
2458 * Recompute topline to put the cursor halfway the window
2459 * If "atend" is TRUE, also put it halfway at the end of the file.
2460 */
2461 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002462scroll_cursor_halfway(int atend)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463{
2464 int above = 0;
2465 linenr_T topline;
2466#ifdef FEAT_DIFF
2467 int topfill = 0;
2468#endif
2469 int below = 0;
2470 int used;
2471 lineoff_T loff;
2472 lineoff_T boff;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002473#ifdef FEAT_DIFF
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002474 linenr_T old_topline = curwin->w_topline;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002475#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476
Bram Moolenaar3697c9b2020-09-26 22:03:00 +02002477#ifdef FEAT_PROP_POPUP
2478 // if the width changed this needs to be updated first
2479 may_update_popup_position();
2480#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 loff.lnum = boff.lnum = curwin->w_cursor.lnum;
2482#ifdef FEAT_FOLDING
2483 (void)hasFolding(loff.lnum, &loff.lnum, &boff.lnum);
2484#endif
2485#ifdef FEAT_DIFF
2486 used = plines_nofill(loff.lnum);
2487 loff.fill = 0;
2488 boff.fill = 0;
2489#else
2490 used = plines(loff.lnum);
2491#endif
2492 topline = loff.lnum;
2493 while (topline > 1)
2494 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002495 if (below <= above) // add a line below the cursor first
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 {
2497 if (boff.lnum < curbuf->b_ml.ml_line_count)
2498 {
2499 botline_forw(&boff);
2500 used += boff.height;
2501 if (used > curwin->w_height)
2502 break;
2503 below += boff.height;
2504 }
2505 else
2506 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002507 ++below; // count a "~" line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 if (atend)
2509 ++used;
2510 }
2511 }
2512
Bram Moolenaar85a20022019-12-21 18:25:54 +01002513 if (below > above) // add a line above the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 {
2515 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002516 if (loff.height == MAXCOL)
2517 used = MAXCOL;
2518 else
2519 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520 if (used > curwin->w_height)
2521 break;
2522 above += loff.height;
2523 topline = loff.lnum;
2524#ifdef FEAT_DIFF
2525 topfill = loff.fill;
2526#endif
2527 }
2528 }
2529#ifdef FEAT_FOLDING
2530 if (!hasFolding(topline, &curwin->w_topline, NULL))
2531#endif
2532 curwin->w_topline = topline;
2533#ifdef FEAT_DIFF
2534 curwin->w_topfill = topfill;
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002535 if (old_topline > curwin->w_topline + curwin->w_height)
2536 curwin->w_botfill = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 check_topfill(curwin, FALSE);
2538#endif
2539 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2540 curwin->w_valid |= VALID_TOPLINE;
2541}
2542
2543/*
2544 * Correct the cursor position so that it is in a part of the screen at least
Bram Moolenaar375e3392019-01-31 18:26:10 +01002545 * 'scrolloff' lines from the top and bottom, if possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 * If not possible, put it at the same position as scroll_cursor_halfway().
2547 * When called topline must be valid!
2548 */
2549 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002550cursor_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551{
Bram Moolenaar85a20022019-12-21 18:25:54 +01002552 int above = 0; // screen lines above topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 linenr_T topline;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002554 int below = 0; // screen lines below botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 linenr_T botline;
2556 int above_wanted, below_wanted;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002557 linenr_T cln; // Cursor Line Number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 int max_off;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002559 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560
2561 /*
2562 * How many lines we would like to have above/below the cursor depends on
2563 * whether the first/last line of the file is on screen.
2564 */
Bram Moolenaar375e3392019-01-31 18:26:10 +01002565 above_wanted = so;
2566 below_wanted = so;
Bram Moolenaar9964e462007-05-05 17:54:07 +00002567 if (mouse_dragging > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 {
2569 above_wanted = mouse_dragging - 1;
2570 below_wanted = mouse_dragging - 1;
2571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 if (curwin->w_topline == 1)
2573 {
2574 above_wanted = 0;
2575 max_off = curwin->w_height / 2;
2576 if (below_wanted > max_off)
2577 below_wanted = max_off;
2578 }
2579 validate_botline();
2580 if (curwin->w_botline == curbuf->b_ml.ml_line_count + 1
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002581 && mouse_dragging == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 {
2583 below_wanted = 0;
2584 max_off = (curwin->w_height - 1) / 2;
2585 if (above_wanted > max_off)
2586 above_wanted = max_off;
2587 }
2588
2589 /*
2590 * If there are sufficient file-lines above and below the cursor, we can
2591 * return now.
2592 */
2593 cln = curwin->w_cursor.lnum;
2594 if (cln >= curwin->w_topline + above_wanted
2595 && cln < curwin->w_botline - below_wanted
2596#ifdef FEAT_FOLDING
2597 && !hasAnyFolding(curwin)
2598#endif
2599 )
2600 return;
2601
2602 /*
2603 * Narrow down the area where the cursor can be put by taking lines from
2604 * the top and the bottom until:
2605 * - the desired context lines are found
2606 * - the lines from the top is past the lines from the bottom
2607 */
2608 topline = curwin->w_topline;
2609 botline = curwin->w_botline - 1;
2610#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002611 // count filler lines as context
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 above = curwin->w_topfill;
2613 below = curwin->w_filler_rows;
2614#endif
2615 while ((above < above_wanted || below < below_wanted) && topline < botline)
2616 {
2617 if (below < below_wanted && (below <= above || above >= above_wanted))
2618 {
2619#ifdef FEAT_FOLDING
2620 if (hasFolding(botline, &botline, NULL))
2621 ++below;
2622 else
2623#endif
2624 below += plines(botline);
2625 --botline;
2626 }
2627 if (above < above_wanted && (above < below || below >= below_wanted))
2628 {
2629#ifdef FEAT_FOLDING
2630 if (hasFolding(topline, NULL, &topline))
2631 ++above;
2632 else
2633#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002634 above += PLINES_NOFILL(topline);
2635#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002636 // Count filler lines below this line as context.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 if (topline < botline)
2638 above += diff_check_fill(curwin, topline + 1);
2639#endif
2640 ++topline;
2641 }
2642 }
2643 if (topline == botline || botline == 0)
2644 curwin->w_cursor.lnum = topline;
2645 else if (topline > botline)
2646 curwin->w_cursor.lnum = botline;
2647 else
2648 {
2649 if (cln < topline && curwin->w_topline > 1)
2650 {
2651 curwin->w_cursor.lnum = topline;
2652 curwin->w_valid &=
2653 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2654 }
2655 if (cln > botline && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2656 {
2657 curwin->w_cursor.lnum = botline;
2658 curwin->w_valid &=
2659 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2660 }
2661 }
2662 curwin->w_valid |= VALID_TOPLINE;
2663}
2664
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01002665static void get_scroll_overlap(lineoff_T *lp, int dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666
2667/*
2668 * move screen 'count' pages up or down and update screen
2669 *
2670 * return FAIL for failure, OK otherwise
2671 */
2672 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002673onepage(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674{
2675 long n;
2676 int retval = OK;
2677 lineoff_T loff;
2678 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002679 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680
Bram Moolenaar85a20022019-12-21 18:25:54 +01002681 if (curbuf->b_ml.ml_line_count == 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 {
2683 beep_flush();
2684 return FAIL;
2685 }
2686
2687 for ( ; count > 0; --count)
2688 {
2689 validate_botline();
2690 /*
2691 * It's an error to move a page up when the first line is already on
2692 * the screen. It's an error to move a page down when the last line
2693 * is on the screen and the topline is 'scrolloff' lines from the
2694 * last line.
2695 */
2696 if (dir == FORWARD
Bram Moolenaar375e3392019-01-31 18:26:10 +01002697 ? ((curwin->w_topline >= curbuf->b_ml.ml_line_count - so)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 && curwin->w_botline > curbuf->b_ml.ml_line_count)
2699 : (curwin->w_topline == 1
2700#ifdef FEAT_DIFF
2701 && curwin->w_topfill ==
2702 diff_check_fill(curwin, curwin->w_topline)
2703#endif
2704 ))
2705 {
2706 beep_flush();
2707 retval = FAIL;
2708 break;
2709 }
2710
2711#ifdef FEAT_DIFF
2712 loff.fill = 0;
2713#endif
2714 if (dir == FORWARD)
2715 {
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002716 if (ONE_WINDOW && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002718 // Vi compatible scrolling
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002719 if (p_window <= 2)
2720 ++curwin->w_topline;
2721 else
2722 curwin->w_topline += p_window - 2;
2723 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
2724 curwin->w_topline = curbuf->b_ml.ml_line_count;
2725 curwin->w_cursor.lnum = curwin->w_topline;
2726 }
2727 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2728 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002729 // at end of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 curwin->w_topline = curbuf->b_ml.ml_line_count;
2731#ifdef FEAT_DIFF
2732 curwin->w_topfill = 0;
2733#endif
2734 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2735 }
2736 else
2737 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002738 // For the overlap, start with the line just below the window
2739 // and go upwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740 loff.lnum = curwin->w_botline;
2741#ifdef FEAT_DIFF
2742 loff.fill = diff_check_fill(curwin, loff.lnum)
2743 - curwin->w_filler_rows;
2744#endif
2745 get_scroll_overlap(&loff, -1);
2746 curwin->w_topline = loff.lnum;
2747#ifdef FEAT_DIFF
2748 curwin->w_topfill = loff.fill;
2749 check_topfill(curwin, FALSE);
2750#endif
2751 curwin->w_cursor.lnum = curwin->w_topline;
2752 curwin->w_valid &= ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|
2753 VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2754 }
2755 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002756 else // dir == BACKWARDS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 {
2758#ifdef FEAT_DIFF
2759 if (curwin->w_topline == 1)
2760 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002761 // Include max number of filler lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 max_topfill();
2763 continue;
2764 }
2765#endif
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002766 if (ONE_WINDOW && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002767 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002768 // Vi compatible scrolling (sort of)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002769 if (p_window <= 2)
2770 --curwin->w_topline;
2771 else
2772 curwin->w_topline -= p_window - 2;
2773 if (curwin->w_topline < 1)
2774 curwin->w_topline = 1;
2775 curwin->w_cursor.lnum = curwin->w_topline + p_window - 1;
2776 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
2777 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2778 continue;
2779 }
2780
Bram Moolenaar85a20022019-12-21 18:25:54 +01002781 // Find the line at the top of the window that is going to be the
2782 // line at the bottom of the window. Make sure this results in
2783 // the same line as before doing CTRL-F.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 loff.lnum = curwin->w_topline - 1;
2785#ifdef FEAT_DIFF
2786 loff.fill = diff_check_fill(curwin, loff.lnum + 1)
2787 - curwin->w_topfill;
2788#endif
2789 get_scroll_overlap(&loff, 1);
2790
2791 if (loff.lnum >= curbuf->b_ml.ml_line_count)
2792 {
2793 loff.lnum = curbuf->b_ml.ml_line_count;
2794#ifdef FEAT_DIFF
2795 loff.fill = 0;
2796 }
2797 else
2798 {
2799 botline_topline(&loff);
2800#endif
2801 }
2802 curwin->w_cursor.lnum = loff.lnum;
2803
Bram Moolenaar85a20022019-12-21 18:25:54 +01002804 // Find the line just above the new topline to get the right line
2805 // at the bottom of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 n = 0;
2807 while (n <= curwin->w_height && loff.lnum >= 1)
2808 {
2809 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002810 if (loff.height == MAXCOL)
2811 n = MAXCOL;
2812 else
2813 n += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002815 if (loff.lnum < 1) // at begin of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 {
2817 curwin->w_topline = 1;
2818#ifdef FEAT_DIFF
2819 max_topfill();
2820#endif
2821 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2822 }
2823 else
2824 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002825 // Go two lines forward again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826#ifdef FEAT_DIFF
2827 topline_botline(&loff);
2828#endif
2829 botline_forw(&loff);
2830 botline_forw(&loff);
2831#ifdef FEAT_DIFF
2832 botline_topline(&loff);
2833#endif
2834#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01002835 // We're at the wrong end of a fold now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 (void)hasFolding(loff.lnum, &loff.lnum, NULL);
2837#endif
2838
Bram Moolenaar85a20022019-12-21 18:25:54 +01002839 // Always scroll at least one line. Avoid getting stuck on
2840 // very long lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 if (loff.lnum >= curwin->w_topline
2842#ifdef FEAT_DIFF
2843 && (loff.lnum > curwin->w_topline
2844 || loff.fill >= curwin->w_topfill)
2845#endif
2846 )
2847 {
2848#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002849 // First try using the maximum number of filler lines. If
2850 // that's not enough, backup one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 loff.fill = curwin->w_topfill;
2852 if (curwin->w_topfill < diff_check_fill(curwin,
2853 curwin->w_topline))
2854 max_topfill();
2855 if (curwin->w_topfill == loff.fill)
2856#endif
2857 {
2858 --curwin->w_topline;
2859#ifdef FEAT_DIFF
2860 curwin->w_topfill = 0;
2861#endif
2862 }
2863 comp_botline(curwin);
2864 curwin->w_cursor.lnum = curwin->w_botline - 1;
Bram Moolenaar3d6db142014-03-28 21:49:32 +01002865 curwin->w_valid &=
2866 ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|VALID_CROW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 }
2868 else
2869 {
2870 curwin->w_topline = loff.lnum;
2871#ifdef FEAT_DIFF
2872 curwin->w_topfill = loff.fill;
2873 check_topfill(curwin, FALSE);
2874#endif
2875 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2876 }
2877 }
2878 }
2879 }
2880#ifdef FEAT_FOLDING
2881 foldAdjustCursor();
2882#endif
2883 cursor_correct();
Bram Moolenaarbc54f3f2016-09-04 14:34:28 +02002884 check_cursor_col();
Bram Moolenaar7c626922005-02-07 22:01:03 +00002885 if (retval == OK)
2886 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 curwin->w_valid &= ~(VALID_WCOL|VALID_WROW|VALID_VIRTCOL);
2888
Bram Moolenaar907dad72018-07-10 15:07:15 +02002889 if (retval == OK && dir == FORWARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 {
Bram Moolenaar907dad72018-07-10 15:07:15 +02002891 // Avoid the screen jumping up and down when 'scrolloff' is non-zero.
2892 // But make sure we scroll at least one line (happens with mix of long
2893 // wrapping lines and non-wrapping line).
2894 if (check_top_offset())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895 {
Bram Moolenaar907dad72018-07-10 15:07:15 +02002896 scroll_cursor_top(1, FALSE);
2897 if (curwin->w_topline <= old_topline
2898 && old_topline < curbuf->b_ml.ml_line_count)
2899 {
2900 curwin->w_topline = old_topline + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901#ifdef FEAT_FOLDING
Bram Moolenaar907dad72018-07-10 15:07:15 +02002902 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2903#endif
2904 }
2905 }
2906#ifdef FEAT_FOLDING
2907 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2909#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 }
2911
Bram Moolenaara4d158b2022-08-14 14:17:45 +01002912 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 return retval;
2914}
2915
2916/*
2917 * Decide how much overlap to use for page-up or page-down scrolling.
2918 * This is symmetric, so that doing both keeps the same lines displayed.
2919 * Three lines are examined:
2920 *
2921 * before CTRL-F after CTRL-F / before CTRL-B
2922 * etc. l1
2923 * l1 last but one line ------------
2924 * l2 last text line l2 top text line
2925 * ------------- l3 second text line
2926 * l3 etc.
2927 */
2928 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002929get_scroll_overlap(lineoff_T *lp, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930{
2931 int h1, h2, h3, h4;
2932 int min_height = curwin->w_height - 2;
2933 lineoff_T loff0, loff1, loff2;
2934
2935#ifdef FEAT_DIFF
2936 if (lp->fill > 0)
2937 lp->height = 1;
2938 else
2939 lp->height = plines_nofill(lp->lnum);
2940#else
2941 lp->height = plines(lp->lnum);
2942#endif
2943 h1 = lp->height;
2944 if (h1 > min_height)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002945 return; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946
2947 loff0 = *lp;
2948 if (dir > 0)
2949 botline_forw(lp);
2950 else
2951 topline_back(lp);
2952 h2 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002953 if (h2 == MAXCOL || h2 + h1 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002955 *lp = loff0; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 return;
2957 }
2958
2959 loff1 = *lp;
2960 if (dir > 0)
2961 botline_forw(lp);
2962 else
2963 topline_back(lp);
2964 h3 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002965 if (h3 == MAXCOL || h3 + h2 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002967 *lp = loff0; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968 return;
2969 }
2970
2971 loff2 = *lp;
2972 if (dir > 0)
2973 botline_forw(lp);
2974 else
2975 topline_back(lp);
2976 h4 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002977 if (h4 == MAXCOL || h4 + h3 + h2 > min_height || h3 + h2 + h1 > min_height)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002978 *lp = loff1; // 1 line overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 else
Bram Moolenaar85a20022019-12-21 18:25:54 +01002980 *lp = loff2; // 2 lines overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981}
2982
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983/*
2984 * Scroll 'scroll' lines up or down.
2985 */
2986 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002987halfpage(int flag, linenr_T Prenum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988{
2989 long scrolled = 0;
2990 int i;
2991 int n;
2992 int room;
2993
2994 if (Prenum)
2995 curwin->w_p_scr = (Prenum > curwin->w_height) ?
2996 curwin->w_height : Prenum;
2997 n = (curwin->w_p_scr <= curwin->w_height) ?
2998 curwin->w_p_scr : curwin->w_height;
2999
Bram Moolenaard5d37532017-03-27 23:02:07 +02003000 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 validate_botline();
3002 room = curwin->w_empty_rows;
3003#ifdef FEAT_DIFF
3004 room += curwin->w_filler_rows;
3005#endif
3006 if (flag)
3007 {
3008 /*
3009 * scroll the text up
3010 */
3011 while (n > 0 && curwin->w_botline <= curbuf->b_ml.ml_line_count)
3012 {
3013#ifdef FEAT_DIFF
3014 if (curwin->w_topfill > 0)
3015 {
3016 i = 1;
Bram Moolenaar8455c5e2020-07-14 21:22:30 +02003017 --n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 --curwin->w_topfill;
3019 }
3020 else
3021#endif
3022 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02003023 i = PLINES_NOFILL(curwin->w_topline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 n -= i;
3025 if (n < 0 && scrolled > 0)
3026 break;
3027#ifdef FEAT_FOLDING
3028 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
3029#endif
3030 ++curwin->w_topline;
3031#ifdef FEAT_DIFF
3032 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
3033#endif
3034
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3036 {
3037 ++curwin->w_cursor.lnum;
3038 curwin->w_valid &=
3039 ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
3040 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 }
3042 curwin->w_valid &= ~(VALID_CROW|VALID_WROW);
3043 scrolled += i;
3044
3045 /*
3046 * Correct w_botline for changed w_topline.
3047 * Won't work when there are filler lines.
3048 */
3049#ifdef FEAT_DIFF
3050 if (curwin->w_p_diff)
3051 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
3052 else
3053#endif
3054 {
3055 room += i;
3056 do
3057 {
3058 i = plines(curwin->w_botline);
3059 if (i > room)
3060 break;
3061#ifdef FEAT_FOLDING
3062 (void)hasFolding(curwin->w_botline, NULL,
3063 &curwin->w_botline);
3064#endif
3065 ++curwin->w_botline;
3066 room -= i;
3067 } while (curwin->w_botline <= curbuf->b_ml.ml_line_count);
3068 }
3069 }
3070
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 /*
3072 * When hit bottom of the file: move cursor down.
3073 */
3074 if (n > 0)
3075 {
3076# ifdef FEAT_FOLDING
3077 if (hasAnyFolding(curwin))
3078 {
3079 while (--n >= 0
3080 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3081 {
3082 (void)hasFolding(curwin->w_cursor.lnum, NULL,
3083 &curwin->w_cursor.lnum);
3084 ++curwin->w_cursor.lnum;
3085 }
3086 }
3087 else
3088# endif
3089 curwin->w_cursor.lnum += n;
3090 check_cursor_lnum();
3091 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092 }
3093 else
3094 {
3095 /*
3096 * scroll the text down
3097 */
3098 while (n > 0 && curwin->w_topline > 1)
3099 {
3100#ifdef FEAT_DIFF
3101 if (curwin->w_topfill < diff_check_fill(curwin, curwin->w_topline))
3102 {
3103 i = 1;
Bram Moolenaard00e0242019-03-20 21:42:20 +01003104 --n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 ++curwin->w_topfill;
3106 }
3107 else
3108#endif
3109 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02003110 i = PLINES_NOFILL(curwin->w_topline - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 n -= i;
3112 if (n < 0 && scrolled > 0)
3113 break;
3114 --curwin->w_topline;
3115#ifdef FEAT_FOLDING
3116 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
3117#endif
3118#ifdef FEAT_DIFF
3119 curwin->w_topfill = 0;
3120#endif
3121 }
3122 curwin->w_valid &= ~(VALID_CROW|VALID_WROW|
3123 VALID_BOTLINE|VALID_BOTLINE_AP);
3124 scrolled += i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 if (curwin->w_cursor.lnum > 1)
3126 {
3127 --curwin->w_cursor.lnum;
3128 curwin->w_valid &= ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
3129 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 }
Bram Moolenaard00e0242019-03-20 21:42:20 +01003131
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 /*
3133 * When hit top of the file: move cursor up.
3134 */
3135 if (n > 0)
3136 {
3137 if (curwin->w_cursor.lnum <= (linenr_T)n)
3138 curwin->w_cursor.lnum = 1;
3139 else
3140# ifdef FEAT_FOLDING
3141 if (hasAnyFolding(curwin))
3142 {
3143 while (--n >= 0 && curwin->w_cursor.lnum > 1)
3144 {
3145 --curwin->w_cursor.lnum;
3146 (void)hasFolding(curwin->w_cursor.lnum,
3147 &curwin->w_cursor.lnum, NULL);
3148 }
3149 }
3150 else
3151# endif
3152 curwin->w_cursor.lnum -= n;
3153 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 }
3155# ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01003156 // Move cursor to first line of closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 foldAdjustCursor();
3158# endif
3159#ifdef FEAT_DIFF
3160 check_topfill(curwin, !flag);
3161#endif
3162 cursor_correct();
3163 beginline(BL_SOL | BL_FIX);
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003164 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165}
Bram Moolenaar860cae12010-06-05 23:22:07 +02003166
Bram Moolenaar860cae12010-06-05 23:22:07 +02003167 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003168do_check_cursorbind(void)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003169{
3170 linenr_T line = curwin->w_cursor.lnum;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003171 colnr_T col = curwin->w_cursor.col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003172 colnr_T coladd = curwin->w_cursor.coladd;
Bram Moolenaar524780d2012-03-28 14:19:50 +02003173 colnr_T curswant = curwin->w_curswant;
3174 int set_curswant = curwin->w_set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003175 win_T *old_curwin = curwin;
3176 buf_T *old_curbuf = curbuf;
Bram Moolenaar61452852011-02-01 18:01:11 +01003177 int restart_edit_save;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003178 int old_VIsual_select = VIsual_select;
3179 int old_VIsual_active = VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003180
3181 /*
3182 * loop through the cursorbound windows
3183 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003184 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02003185 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003186 {
3187 curbuf = curwin->w_buffer;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003188 // skip original window and windows with 'noscrollbind'
Bram Moolenaar860cae12010-06-05 23:22:07 +02003189 if (curwin != old_curwin && curwin->w_p_crb)
3190 {
3191# ifdef FEAT_DIFF
3192 if (curwin->w_p_diff)
Bram Moolenaar025e3e02016-10-18 14:50:18 +02003193 curwin->w_cursor.lnum =
3194 diff_get_corresponding_line(old_curbuf, line);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003195 else
3196# endif
3197 curwin->w_cursor.lnum = line;
3198 curwin->w_cursor.col = col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003199 curwin->w_cursor.coladd = coladd;
Bram Moolenaar524780d2012-03-28 14:19:50 +02003200 curwin->w_curswant = curswant;
3201 curwin->w_set_curswant = set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003202
Bram Moolenaar85a20022019-12-21 18:25:54 +01003203 // Make sure the cursor is in a valid position. Temporarily set
3204 // "restart_edit" to allow the cursor to be beyond the EOL.
Bram Moolenaar61452852011-02-01 18:01:11 +01003205 restart_edit_save = restart_edit;
3206 restart_edit = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003207 check_cursor();
Bram Moolenaara315ce12022-06-24 12:38:57 +01003208
3209 // Avoid a scroll here for the cursor position, 'scrollbind' is
3210 // more important.
3211 if (!curwin->w_p_scb)
3212 validate_cursor();
3213
Bram Moolenaar61452852011-02-01 18:01:11 +01003214 restart_edit = restart_edit_save;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003215 // Correct cursor for multi-byte character.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003216 if (has_mbyte)
3217 mb_adjust_cursor();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003218 redraw_later(UPD_VALID);
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01003219
Bram Moolenaar85a20022019-12-21 18:25:54 +01003220 // Only scroll when 'scrollbind' hasn't done this.
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01003221 if (!curwin->w_p_scb)
3222 update_topline();
Bram Moolenaar860cae12010-06-05 23:22:07 +02003223 curwin->w_redr_status = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003224 }
3225 }
3226
3227 /*
3228 * reset current-window
3229 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003230 VIsual_select = old_VIsual_select;
3231 VIsual_active = old_VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003232 curwin = old_curwin;
3233 curbuf = old_curbuf;
3234}