blob: 613791e3e9f35b5b9bb58987f9a65d3f8c193c15 [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 {
1608 // make sure the cursor is in the visible text
1609 validate_virtcol();
1610 int col = curwin->w_virtcol - curwin->w_skipcol;
1611 int row = 0;
1612 if (col >= width1)
1613 {
1614 col -= width1;
1615 ++row;
1616 }
1617 if (col > width2)
1618 {
1619 row += col / width2;
1620 col = col % width2;
1621 }
1622 if (row >= curwin->w_height)
1623 coladvance(curwin->w_virtcol
1624 - (row - curwin->w_height + 1) * width2);
1625 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626}
1627
1628/*
1629 * Scroll the current window up by "line_count" logical lines. "CTRL-E"
1630 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001632scrollup(
1633 long line_count,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001634 int byfold UNUSED) // TRUE: count a closed fold as one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635{
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001636 int do_sms = curwin->w_p_wrap && curwin->w_p_sms;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001638 if (do_sms
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639# ifdef FEAT_FOLDING
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001640 || (byfold && hasAnyFolding(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641# endif
1642# ifdef FEAT_DIFF
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001643 || curwin->w_p_diff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644# endif
1645 )
1646 {
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001647 int width1 = curwin->w_width - curwin_col_off();
1648 int width2 = width1 + curwin_col_off2();
1649 int size = 0;
1650 linenr_T prev_topline = curwin->w_topline;
1651
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001652 if (do_sms)
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001653 size = win_linetabsize(curwin, curwin->w_topline,
1654 ml_get(curwin->w_topline), (colnr_T)MAXCOL);
1655
1656 // diff mode: first consume "topfill"
1657 // 'smoothscroll': increase "w_skipcol" until it goes over the end of
1658 // the line, then advance to the next line.
1659 // folding: count each sequence of folded lines as one logical line.
1660 for (int todo = line_count; todo > 0; --todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 {
1662# ifdef FEAT_DIFF
1663 if (curwin->w_topfill > 0)
1664 --curwin->w_topfill;
1665 else
1666# endif
1667 {
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001668 linenr_T lnum = curwin->w_topline;
1669
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670# ifdef FEAT_FOLDING
1671 if (byfold)
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001672 // for a closed fold: go to the last line in the fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 (void)hasFolding(lnum, NULL, &lnum);
1674# endif
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001675 if (lnum == curwin->w_topline && do_sms)
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001676 {
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001677 // 'smoothscroll': increase "w_skipcol" until it goes over
1678 // the end of the line, then advance to the next line.
1679 int add = curwin->w_skipcol > 0 ? width2 : width1;
1680 curwin->w_skipcol += add;
1681 if (curwin->w_skipcol >= size)
1682 {
1683 if (lnum == curbuf->b_ml.ml_line_count)
1684 {
1685 // at the last screen line, can't scroll further
1686 curwin->w_skipcol -= add;
1687 break;
1688 }
1689 ++lnum;
1690 }
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001691 }
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001692 else
1693 {
1694 if (lnum >= curbuf->b_ml.ml_line_count)
1695 break;
1696 ++lnum;
1697 }
1698
1699 if (lnum > curwin->w_topline)
1700 {
1701 // approximate w_botline
1702 curwin->w_botline += lnum - curwin->w_topline;
1703 curwin->w_topline = lnum;
1704# ifdef FEAT_DIFF
1705 curwin->w_topfill = diff_check_fill(curwin, lnum);
1706# endif
1707 curwin->w_skipcol = 0;
Bram Moolenaar1a58e1d2022-10-06 13:09:17 +01001708 if (todo > 1 && do_sms)
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001709 size = win_linetabsize(curwin, curwin->w_topline,
1710 ml_get(curwin->w_topline), (colnr_T)MAXCOL);
1711 }
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001712 }
1713 }
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001714
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001715 if (curwin->w_topline == prev_topline)
1716 // need to redraw even though w_topline didn't change
1717 redraw_later(UPD_NOT_VALID);
1718 }
1719 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 {
1721 curwin->w_topline += line_count;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001722 curwin->w_botline += line_count; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 }
1724
1725 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
1726 curwin->w_topline = curbuf->b_ml.ml_line_count;
1727 if (curwin->w_botline > curbuf->b_ml.ml_line_count + 1)
1728 curwin->w_botline = curbuf->b_ml.ml_line_count + 1;
1729
1730#ifdef FEAT_DIFF
1731 check_topfill(curwin, FALSE);
1732#endif
1733
1734#ifdef FEAT_FOLDING
1735 if (hasAnyFolding(curwin))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001736 // Make sure w_topline is at the first of a sequence of folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1738#endif
1739
1740 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1741 if (curwin->w_cursor.lnum < curwin->w_topline)
1742 {
1743 curwin->w_cursor.lnum = curwin->w_topline;
1744 curwin->w_valid &=
1745 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1746 coladvance(curwin->w_curswant);
1747 }
Bram Moolenaar8cf34592022-10-08 21:13:40 +01001748 if (curwin->w_cursor.lnum == curwin->w_topline
1749 && do_sms && curwin->w_skipcol > 0)
1750 {
1751 // make sure the cursor is in a visible part of the line
1752 validate_virtcol();
1753 if (curwin->w_virtcol < curwin->w_skipcol + 3)
1754 {
1755 int width1 = curwin->w_width - curwin_col_off();
1756 int width2 = width1 + curwin_col_off2();
1757 colnr_T col = curwin->w_virtcol;
1758
1759 if (col < width1)
1760 col += width1;
1761 while (col < curwin->w_skipcol + 3)
1762 col += width2;
1763 coladvance(col);
1764 }
1765 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766}
1767
1768#ifdef FEAT_DIFF
1769/*
1770 * Don't end up with too many filler lines in the window.
1771 */
1772 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001773check_topfill(
1774 win_T *wp,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001775 int down) // when TRUE scroll down when not enough space
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776{
1777 int n;
1778
1779 if (wp->w_topfill > 0)
1780 {
1781 n = plines_win_nofill(wp, wp->w_topline, TRUE);
1782 if (wp->w_topfill + n > wp->w_height)
1783 {
1784 if (down && wp->w_topline > 1)
1785 {
1786 --wp->w_topline;
1787 wp->w_topfill = 0;
1788 }
1789 else
1790 {
1791 wp->w_topfill = wp->w_height - n;
1792 if (wp->w_topfill < 0)
1793 wp->w_topfill = 0;
1794 }
1795 }
1796 }
1797}
1798
1799/*
1800 * Use as many filler lines as possible for w_topline. Make sure w_topline
1801 * is still visible.
1802 */
1803 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001804max_topfill(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805{
1806 int n;
1807
1808 n = plines_nofill(curwin->w_topline);
1809 if (n >= curwin->w_height)
1810 curwin->w_topfill = 0;
1811 else
1812 {
1813 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
1814 if (curwin->w_topfill + n > curwin->w_height)
1815 curwin->w_topfill = curwin->w_height - n;
1816 }
1817}
1818#endif
1819
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820/*
1821 * Scroll the screen one line down, but don't do it if it would move the
1822 * cursor off the screen.
1823 */
1824 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001825scrolldown_clamp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826{
1827 int end_row;
1828#ifdef FEAT_DIFF
1829 int can_fill = (curwin->w_topfill
1830 < diff_check_fill(curwin, curwin->w_topline));
1831#endif
1832
1833 if (curwin->w_topline <= 1
1834#ifdef FEAT_DIFF
1835 && !can_fill
1836#endif
1837 )
1838 return;
1839
Bram Moolenaar85a20022019-12-21 18:25:54 +01001840 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841
1842 /*
1843 * Compute the row number of the last row of the cursor line
1844 * and make sure it doesn't go off the screen. Make sure the cursor
1845 * doesn't go past 'scrolloff' lines from the screen end.
1846 */
1847 end_row = curwin->w_wrow;
1848#ifdef FEAT_DIFF
1849 if (can_fill)
1850 ++end_row;
1851 else
1852 end_row += plines_nofill(curwin->w_topline - 1);
1853#else
1854 end_row += plines(curwin->w_topline - 1);
1855#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001856 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 {
1858 validate_cheight();
1859 validate_virtcol();
1860 end_row += curwin->w_cline_height - 1 -
Bram Moolenaar02631462017-09-22 15:20:32 +02001861 curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 }
Bram Moolenaar375e3392019-01-31 18:26:10 +01001863 if (end_row < curwin->w_height - get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 {
1865#ifdef FEAT_DIFF
1866 if (can_fill)
1867 {
1868 ++curwin->w_topfill;
1869 check_topfill(curwin, TRUE);
1870 }
1871 else
1872 {
1873 --curwin->w_topline;
1874 curwin->w_topfill = 0;
1875 }
1876#else
1877 --curwin->w_topline;
1878#endif
1879#ifdef FEAT_FOLDING
Bram Moolenaarcde88542015-08-11 19:14:00 +02001880 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +01001882 --curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1884 }
1885}
1886
1887/*
1888 * Scroll the screen one line up, but don't do it if it would move the cursor
1889 * off the screen.
1890 */
1891 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001892scrollup_clamp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893{
1894 int start_row;
1895
1896 if (curwin->w_topline == curbuf->b_ml.ml_line_count
1897#ifdef FEAT_DIFF
1898 && curwin->w_topfill == 0
1899#endif
1900 )
1901 return;
1902
Bram Moolenaar85a20022019-12-21 18:25:54 +01001903 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904
1905 /*
1906 * Compute the row number of the first row of the cursor line
1907 * and make sure it doesn't go off the screen. Make sure the cursor
1908 * doesn't go before 'scrolloff' lines from the screen start.
1909 */
1910#ifdef FEAT_DIFF
1911 start_row = curwin->w_wrow - plines_nofill(curwin->w_topline)
1912 - curwin->w_topfill;
1913#else
1914 start_row = curwin->w_wrow - plines(curwin->w_topline);
1915#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001916 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 {
1918 validate_virtcol();
Bram Moolenaar02631462017-09-22 15:20:32 +02001919 start_row -= curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 }
Bram Moolenaar375e3392019-01-31 18:26:10 +01001921 if (start_row >= get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 {
1923#ifdef FEAT_DIFF
1924 if (curwin->w_topfill > 0)
1925 --curwin->w_topfill;
1926 else
1927#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001928 {
1929#ifdef FEAT_FOLDING
1930 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
1931#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 ++curwin->w_topline;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001933 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001934 ++curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1936 }
1937}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938
1939/*
1940 * Add one line above "lp->lnum". This can be a filler line, a closed fold or
1941 * a (wrapped) text line. Uses and sets "lp->fill".
1942 * Returns the height of the added line in "lp->height".
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01001943 * Lines above the first one are incredibly high: MAXCOL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 */
1945 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001946topline_back(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947{
1948#ifdef FEAT_DIFF
1949 if (lp->fill < diff_check_fill(curwin, lp->lnum))
1950 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001951 // Add a filler line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 ++lp->fill;
1953 lp->height = 1;
1954 }
1955 else
1956#endif
1957 {
1958 --lp->lnum;
1959#ifdef FEAT_DIFF
1960 lp->fill = 0;
1961#endif
1962 if (lp->lnum < 1)
1963 lp->height = MAXCOL;
1964 else
1965#ifdef FEAT_FOLDING
1966 if (hasFolding(lp->lnum, &lp->lnum, NULL))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001967 // Add a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 lp->height = 1;
1969 else
1970#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02001971 lp->height = PLINES_NOFILL(lp->lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 }
1973}
1974
1975/*
1976 * Add one line below "lp->lnum". This can be a filler line, a closed fold or
1977 * a (wrapped) text line. Uses and sets "lp->fill".
1978 * Returns the height of the added line in "lp->height".
1979 * Lines below the last one are incredibly high.
1980 */
1981 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001982botline_forw(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983{
1984#ifdef FEAT_DIFF
1985 if (lp->fill < diff_check_fill(curwin, lp->lnum + 1))
1986 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001987 // Add a filler line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 ++lp->fill;
1989 lp->height = 1;
1990 }
1991 else
1992#endif
1993 {
1994 ++lp->lnum;
1995#ifdef FEAT_DIFF
1996 lp->fill = 0;
1997#endif
1998 if (lp->lnum > curbuf->b_ml.ml_line_count)
1999 lp->height = MAXCOL;
2000 else
2001#ifdef FEAT_FOLDING
2002 if (hasFolding(lp->lnum, NULL, &lp->lnum))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002003 // Add a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 lp->height = 1;
2005 else
2006#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002007 lp->height = PLINES_NOFILL(lp->lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 }
2009}
2010
2011#ifdef FEAT_DIFF
2012/*
2013 * Switch from including filler lines below lp->lnum to including filler
2014 * lines above loff.lnum + 1. This keeps pointing to the same line.
2015 * When there are no filler lines nothing changes.
2016 */
2017 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002018botline_topline(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019{
2020 if (lp->fill > 0)
2021 {
2022 ++lp->lnum;
2023 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
2024 }
2025}
2026
2027/*
2028 * Switch from including filler lines above lp->lnum to including filler
2029 * lines below loff.lnum - 1. This keeps pointing to the same line.
2030 * When there are no filler lines nothing changes.
2031 */
2032 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002033topline_botline(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034{
2035 if (lp->fill > 0)
2036 {
2037 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
2038 --lp->lnum;
2039 }
2040}
2041#endif
2042
2043/*
2044 * Recompute topline to put the cursor at the top of the window.
2045 * Scroll at least "min_scroll" lines.
2046 * If "always" is TRUE, always set topline (for "zt").
2047 */
2048 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002049scroll_cursor_top(int min_scroll, int always)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050{
2051 int scrolled = 0;
2052 int extra = 0;
2053 int used;
2054 int i;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002055 linenr_T top; // just above displayed lines
2056 linenr_T bot; // just below displayed lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar46b54742022-10-06 15:46:49 +01002058 int old_skipcol = curwin->w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059#ifdef FEAT_DIFF
2060 linenr_T old_topfill = curwin->w_topfill;
2061#endif
2062 linenr_T new_topline;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002063 int off = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 if (mouse_dragging > 0)
2066 off = mouse_dragging - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067
2068 /*
2069 * Decrease topline until:
2070 * - it has become 1
2071 * - (part of) the cursor line is moved off the screen or
2072 * - moved at least 'scrolljump' lines and
2073 * - at least 'scrolloff' lines above and below the cursor
2074 */
2075 validate_cheight();
Bram Moolenaar85a20022019-12-21 18:25:54 +01002076 used = curwin->w_cline_height; // includes filler lines above
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 if (curwin->w_cursor.lnum < curwin->w_topline)
2078 scrolled = used;
2079
2080#ifdef FEAT_FOLDING
2081 if (hasFolding(curwin->w_cursor.lnum, &top, &bot))
2082 {
2083 --top;
2084 ++bot;
2085 }
2086 else
2087#endif
2088 {
2089 top = curwin->w_cursor.lnum - 1;
2090 bot = curwin->w_cursor.lnum + 1;
2091 }
2092 new_topline = top + 1;
2093
2094#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002095 // "used" already contains the number of filler lines above, don't add it
2096 // again.
2097 // Hide filler lines above cursor line by adding them to "extra".
Bram Moolenaara09a2c52015-09-08 17:31:59 +02002098 extra += diff_check_fill(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099#endif
2100
2101 /*
2102 * Check if the lines from "top" to "bot" fit in the window. If they do,
2103 * set new_topline and advance "top" and "bot" to include more lines.
2104 */
2105 while (top > 0)
2106 {
2107#ifdef FEAT_FOLDING
2108 if (hasFolding(top, &top, NULL))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002109 // count one logical line for a sequence of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110 i = 1;
2111 else
2112#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002113 i = PLINES_NOFILL(top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 used += i;
2115 if (extra + i <= off && bot < curbuf->b_ml.ml_line_count)
2116 {
2117#ifdef FEAT_FOLDING
2118 if (hasFolding(bot, NULL, &bot))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002119 // count one logical line for a sequence of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 ++used;
2121 else
2122#endif
2123 used += plines(bot);
2124 }
2125 if (used > curwin->w_height)
2126 break;
2127 if (top < curwin->w_topline)
2128 scrolled += i;
2129
2130 /*
2131 * If scrolling is needed, scroll at least 'sj' lines.
2132 */
2133 if ((new_topline >= curwin->w_topline || scrolled > min_scroll)
2134 && extra >= off)
2135 break;
2136
2137 extra += i;
2138 new_topline = top;
2139 --top;
2140 ++bot;
2141 }
2142
2143 /*
2144 * If we don't have enough space, put cursor in the middle.
2145 * This makes sure we get the same position when using "k" and "j"
2146 * in a small window.
2147 */
2148 if (used > curwin->w_height)
2149 scroll_cursor_halfway(FALSE);
2150 else
2151 {
2152 /*
2153 * If "always" is FALSE, only adjust topline to a lower value, higher
2154 * value may happen with wrapping lines
2155 */
2156 if (new_topline < curwin->w_topline || always)
2157 curwin->w_topline = new_topline;
2158 if (curwin->w_topline > curwin->w_cursor.lnum)
2159 curwin->w_topline = curwin->w_cursor.lnum;
2160#ifdef FEAT_DIFF
2161 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
2162 if (curwin->w_topfill > 0 && extra > off)
2163 {
2164 curwin->w_topfill -= extra - off;
2165 if (curwin->w_topfill < 0)
2166 curwin->w_topfill = 0;
2167 }
2168 check_topfill(curwin, FALSE);
2169#endif
Bram Moolenaar46b54742022-10-06 15:46:49 +01002170 // TODO: if the line doesn't fit may optimize w_skipcol
2171 if (curwin->w_topline == curwin->w_cursor.lnum)
2172 {
2173 curwin->w_skipcol = 0;
2174 redraw_later(UPD_NOT_VALID);
2175 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 if (curwin->w_topline != old_topline
Bram Moolenaar46b54742022-10-06 15:46:49 +01002177 || curwin->w_skipcol != old_skipcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178#ifdef FEAT_DIFF
2179 || curwin->w_topfill != old_topfill
2180#endif
2181 )
2182 curwin->w_valid &=
2183 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2184 curwin->w_valid |= VALID_TOPLINE;
2185 }
2186}
2187
2188/*
2189 * Set w_empty_rows and w_filler_rows for window "wp", having used up "used"
2190 * screen lines for text lines.
2191 */
2192 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002193set_empty_rows(win_T *wp, int used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194{
2195#ifdef FEAT_DIFF
2196 wp->w_filler_rows = 0;
2197#endif
2198 if (used == 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002199 wp->w_empty_rows = 0; // single line that doesn't fit
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 else
2201 {
2202 wp->w_empty_rows = wp->w_height - used;
2203#ifdef FEAT_DIFF
2204 if (wp->w_botline <= wp->w_buffer->b_ml.ml_line_count)
2205 {
2206 wp->w_filler_rows = diff_check_fill(wp, wp->w_botline);
2207 if (wp->w_empty_rows > wp->w_filler_rows)
2208 wp->w_empty_rows -= wp->w_filler_rows;
2209 else
2210 {
2211 wp->w_filler_rows = wp->w_empty_rows;
2212 wp->w_empty_rows = 0;
2213 }
2214 }
2215#endif
2216 }
2217}
2218
2219/*
2220 * Recompute topline to put the cursor at the bottom of the window.
Bram Moolenaar8088ae92022-06-20 11:38:17 +01002221 * When scrolling scroll at least "min_scroll" lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 * If "set_topbot" is TRUE, set topline and botline first (for "zb").
2223 * This is messy stuff!!!
2224 */
2225 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002226scroll_cursor_bot(int min_scroll, int set_topbot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227{
2228 int used;
2229 int scrolled = 0;
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002230 int min_scrolled = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 int extra = 0;
2232 int i;
2233 linenr_T line_count;
2234 linenr_T old_topline = curwin->w_topline;
2235 lineoff_T loff;
2236 lineoff_T boff;
2237#ifdef FEAT_DIFF
2238 int old_topfill = curwin->w_topfill;
2239 int fill_below_window;
2240#endif
2241 linenr_T old_botline = curwin->w_botline;
2242 linenr_T old_valid = curwin->w_valid;
2243 int old_empty_rows = curwin->w_empty_rows;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002244 linenr_T cln; // Cursor Line Number
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002245 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246
2247 cln = curwin->w_cursor.lnum;
2248 if (set_topbot)
2249 {
2250 used = 0;
2251 curwin->w_botline = cln + 1;
2252#ifdef FEAT_DIFF
2253 loff.fill = 0;
2254#endif
2255 for (curwin->w_topline = curwin->w_botline;
2256 curwin->w_topline > 1;
2257 curwin->w_topline = loff.lnum)
2258 {
2259 loff.lnum = curwin->w_topline;
2260 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002261 if (loff.height == MAXCOL || used + loff.height > curwin->w_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 break;
2263 used += loff.height;
2264#ifdef FEAT_DIFF
2265 curwin->w_topfill = loff.fill;
2266#endif
2267 }
2268 set_empty_rows(curwin, used);
2269 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
2270 if (curwin->w_topline != old_topline
2271#ifdef FEAT_DIFF
2272 || curwin->w_topfill != old_topfill
2273#endif
2274 )
2275 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2276 }
2277 else
2278 validate_botline();
2279
Bram Moolenaar85a20022019-12-21 18:25:54 +01002280 // The lines of the cursor line itself are always used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281#ifdef FEAT_DIFF
2282 used = plines_nofill(cln);
2283#else
2284 validate_cheight();
2285 used = curwin->w_cline_height;
2286#endif
2287
Bram Moolenaar85a20022019-12-21 18:25:54 +01002288 // If the cursor is below botline, we will at least scroll by the height
2289 // of the cursor line. Correct for empty lines, which are really part of
2290 // botline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291 if (cln >= curwin->w_botline)
2292 {
2293 scrolled = used;
2294 if (cln == curwin->w_botline)
2295 scrolled -= curwin->w_empty_rows;
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002296 min_scrolled = scrolled;
2297 if (cln > curwin->w_botline && curwin->w_p_sms && curwin->w_p_wrap)
2298 for (linenr_T lnum = curwin->w_botline + 1; lnum <= cln; ++lnum)
Bram Moolenaar4d31b482022-10-06 16:03:09 +01002299 min_scrolled += PLINES_NOFILL(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 }
2301
2302 /*
2303 * Stop counting lines to scroll when
2304 * - hitting start of the file
2305 * - scrolled nothing or at least 'sj' lines
Bram Moolenaar375e3392019-01-31 18:26:10 +01002306 * - at least 'scrolloff' lines below the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 * - lines between botline and cursor have been counted
2308 */
2309#ifdef FEAT_FOLDING
2310 if (!hasFolding(curwin->w_cursor.lnum, &loff.lnum, &boff.lnum))
2311#endif
2312 {
2313 loff.lnum = cln;
2314 boff.lnum = cln;
2315 }
2316#ifdef FEAT_DIFF
2317 loff.fill = 0;
2318 boff.fill = 0;
2319 fill_below_window = diff_check_fill(curwin, curwin->w_botline)
2320 - curwin->w_filler_rows;
2321#endif
2322
2323 while (loff.lnum > 1)
2324 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002325 // Stop when scrolled nothing or at least "min_scroll", found "extra"
2326 // context for 'scrolloff' and counted all lines below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 if ((((scrolled <= 0 || scrolled >= min_scroll)
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002328 && extra >= (mouse_dragging > 0 ? mouse_dragging - 1 : so))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 || boff.lnum + 1 > curbuf->b_ml.ml_line_count)
2330 && loff.lnum <= curwin->w_botline
2331#ifdef FEAT_DIFF
2332 && (loff.lnum < curwin->w_botline
2333 || loff.fill >= fill_below_window)
2334#endif
2335 )
2336 break;
2337
Bram Moolenaar85a20022019-12-21 18:25:54 +01002338 // Add one line above
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002340 if (loff.height == MAXCOL)
2341 used = MAXCOL;
2342 else
2343 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 if (used > curwin->w_height)
2345 break;
2346 if (loff.lnum >= curwin->w_botline
2347#ifdef FEAT_DIFF
2348 && (loff.lnum > curwin->w_botline
2349 || loff.fill <= fill_below_window)
2350#endif
2351 )
2352 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002353 // Count screen lines that are below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 scrolled += loff.height;
2355 if (loff.lnum == curwin->w_botline
2356#ifdef FEAT_DIFF
Bram Moolenaar4e303c82018-11-24 14:27:44 +01002357 && loff.fill == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358#endif
2359 )
2360 scrolled -= curwin->w_empty_rows;
2361 }
2362
2363 if (boff.lnum < curbuf->b_ml.ml_line_count)
2364 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002365 // Add one line below
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 botline_forw(&boff);
2367 used += boff.height;
2368 if (used > curwin->w_height)
2369 break;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002370 if (extra < ( mouse_dragging > 0 ? mouse_dragging - 1 : so)
2371 || scrolled < min_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 {
2373 extra += boff.height;
2374 if (boff.lnum >= curwin->w_botline
2375#ifdef FEAT_DIFF
2376 || (boff.lnum + 1 == curwin->w_botline
2377 && boff.fill > curwin->w_filler_rows)
2378#endif
2379 )
2380 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002381 // Count screen lines that are below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 scrolled += boff.height;
2383 if (boff.lnum == curwin->w_botline
2384#ifdef FEAT_DIFF
2385 && boff.fill == 0
2386#endif
2387 )
2388 scrolled -= curwin->w_empty_rows;
2389 }
2390 }
2391 }
2392 }
2393
Bram Moolenaar85a20022019-12-21 18:25:54 +01002394 // curwin->w_empty_rows is larger, no need to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 if (scrolled <= 0)
2396 line_count = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002397 // more than a screenfull, don't scroll but redraw
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 else if (used > curwin->w_height)
2399 line_count = used;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002400 // scroll minimal number of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 else
2402 {
2403 line_count = 0;
2404#ifdef FEAT_DIFF
2405 boff.fill = curwin->w_topfill;
2406#endif
2407 boff.lnum = curwin->w_topline - 1;
2408 for (i = 0; i < scrolled && boff.lnum < curwin->w_botline; )
2409 {
2410 botline_forw(&boff);
2411 i += boff.height;
2412 ++line_count;
2413 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002414 if (i < scrolled) // below curwin->w_botline, don't scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 line_count = 9999;
2416 }
2417
2418 /*
2419 * Scroll up if the cursor is off the bottom of the screen a bit.
2420 * Otherwise put it at 1/2 of the screen.
2421 */
2422 if (line_count >= curwin->w_height && line_count > min_scroll)
2423 scroll_cursor_halfway(FALSE);
2424 else
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002425 {
2426 // With 'smoothscroll' scroll at least the height of the cursor line.
2427 if (curwin->w_p_wrap && curwin->w_p_sms && line_count < min_scrolled)
2428 line_count = min_scrolled;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 scrollup(line_count, TRUE);
Bram Moolenaar9bab7a02022-10-06 14:57:53 +01002430 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431
2432 /*
2433 * If topline didn't change we need to restore w_botline and w_empty_rows
2434 * (we changed them).
2435 * If topline did change, update_screen() will set botline.
2436 */
2437 if (curwin->w_topline == old_topline && set_topbot)
2438 {
2439 curwin->w_botline = old_botline;
2440 curwin->w_empty_rows = old_empty_rows;
2441 curwin->w_valid = old_valid;
2442 }
2443 curwin->w_valid |= VALID_TOPLINE;
2444}
2445
2446/*
2447 * Recompute topline to put the cursor halfway the window
2448 * If "atend" is TRUE, also put it halfway at the end of the file.
2449 */
2450 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002451scroll_cursor_halfway(int atend)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452{
2453 int above = 0;
2454 linenr_T topline;
2455#ifdef FEAT_DIFF
2456 int topfill = 0;
2457#endif
2458 int below = 0;
2459 int used;
2460 lineoff_T loff;
2461 lineoff_T boff;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002462#ifdef FEAT_DIFF
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002463 linenr_T old_topline = curwin->w_topline;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002464#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465
Bram Moolenaar3697c9b2020-09-26 22:03:00 +02002466#ifdef FEAT_PROP_POPUP
2467 // if the width changed this needs to be updated first
2468 may_update_popup_position();
2469#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 loff.lnum = boff.lnum = curwin->w_cursor.lnum;
2471#ifdef FEAT_FOLDING
2472 (void)hasFolding(loff.lnum, &loff.lnum, &boff.lnum);
2473#endif
2474#ifdef FEAT_DIFF
2475 used = plines_nofill(loff.lnum);
2476 loff.fill = 0;
2477 boff.fill = 0;
2478#else
2479 used = plines(loff.lnum);
2480#endif
2481 topline = loff.lnum;
2482 while (topline > 1)
2483 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002484 if (below <= above) // add a line below the cursor first
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 {
2486 if (boff.lnum < curbuf->b_ml.ml_line_count)
2487 {
2488 botline_forw(&boff);
2489 used += boff.height;
2490 if (used > curwin->w_height)
2491 break;
2492 below += boff.height;
2493 }
2494 else
2495 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002496 ++below; // count a "~" line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 if (atend)
2498 ++used;
2499 }
2500 }
2501
Bram Moolenaar85a20022019-12-21 18:25:54 +01002502 if (below > above) // add a line above the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 {
2504 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002505 if (loff.height == MAXCOL)
2506 used = MAXCOL;
2507 else
2508 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 if (used > curwin->w_height)
2510 break;
2511 above += loff.height;
2512 topline = loff.lnum;
2513#ifdef FEAT_DIFF
2514 topfill = loff.fill;
2515#endif
2516 }
2517 }
2518#ifdef FEAT_FOLDING
2519 if (!hasFolding(topline, &curwin->w_topline, NULL))
2520#endif
2521 curwin->w_topline = topline;
2522#ifdef FEAT_DIFF
2523 curwin->w_topfill = topfill;
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002524 if (old_topline > curwin->w_topline + curwin->w_height)
2525 curwin->w_botfill = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 check_topfill(curwin, FALSE);
2527#endif
2528 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2529 curwin->w_valid |= VALID_TOPLINE;
2530}
2531
2532/*
2533 * Correct the cursor position so that it is in a part of the screen at least
Bram Moolenaar375e3392019-01-31 18:26:10 +01002534 * 'scrolloff' lines from the top and bottom, if possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 * If not possible, put it at the same position as scroll_cursor_halfway().
2536 * When called topline must be valid!
2537 */
2538 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002539cursor_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540{
Bram Moolenaar85a20022019-12-21 18:25:54 +01002541 int above = 0; // screen lines above topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 linenr_T topline;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002543 int below = 0; // screen lines below botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 linenr_T botline;
2545 int above_wanted, below_wanted;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002546 linenr_T cln; // Cursor Line Number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 int max_off;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002548 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549
2550 /*
2551 * How many lines we would like to have above/below the cursor depends on
2552 * whether the first/last line of the file is on screen.
2553 */
Bram Moolenaar375e3392019-01-31 18:26:10 +01002554 above_wanted = so;
2555 below_wanted = so;
Bram Moolenaar9964e462007-05-05 17:54:07 +00002556 if (mouse_dragging > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 {
2558 above_wanted = mouse_dragging - 1;
2559 below_wanted = mouse_dragging - 1;
2560 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 if (curwin->w_topline == 1)
2562 {
2563 above_wanted = 0;
2564 max_off = curwin->w_height / 2;
2565 if (below_wanted > max_off)
2566 below_wanted = max_off;
2567 }
2568 validate_botline();
2569 if (curwin->w_botline == curbuf->b_ml.ml_line_count + 1
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002570 && mouse_dragging == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 {
2572 below_wanted = 0;
2573 max_off = (curwin->w_height - 1) / 2;
2574 if (above_wanted > max_off)
2575 above_wanted = max_off;
2576 }
2577
2578 /*
2579 * If there are sufficient file-lines above and below the cursor, we can
2580 * return now.
2581 */
2582 cln = curwin->w_cursor.lnum;
2583 if (cln >= curwin->w_topline + above_wanted
2584 && cln < curwin->w_botline - below_wanted
2585#ifdef FEAT_FOLDING
2586 && !hasAnyFolding(curwin)
2587#endif
2588 )
2589 return;
2590
2591 /*
2592 * Narrow down the area where the cursor can be put by taking lines from
2593 * the top and the bottom until:
2594 * - the desired context lines are found
2595 * - the lines from the top is past the lines from the bottom
2596 */
2597 topline = curwin->w_topline;
2598 botline = curwin->w_botline - 1;
2599#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002600 // count filler lines as context
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 above = curwin->w_topfill;
2602 below = curwin->w_filler_rows;
2603#endif
2604 while ((above < above_wanted || below < below_wanted) && topline < botline)
2605 {
2606 if (below < below_wanted && (below <= above || above >= above_wanted))
2607 {
2608#ifdef FEAT_FOLDING
2609 if (hasFolding(botline, &botline, NULL))
2610 ++below;
2611 else
2612#endif
2613 below += plines(botline);
2614 --botline;
2615 }
2616 if (above < above_wanted && (above < below || below >= below_wanted))
2617 {
2618#ifdef FEAT_FOLDING
2619 if (hasFolding(topline, NULL, &topline))
2620 ++above;
2621 else
2622#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002623 above += PLINES_NOFILL(topline);
2624#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002625 // Count filler lines below this line as context.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 if (topline < botline)
2627 above += diff_check_fill(curwin, topline + 1);
2628#endif
2629 ++topline;
2630 }
2631 }
2632 if (topline == botline || botline == 0)
2633 curwin->w_cursor.lnum = topline;
2634 else if (topline > botline)
2635 curwin->w_cursor.lnum = botline;
2636 else
2637 {
2638 if (cln < topline && curwin->w_topline > 1)
2639 {
2640 curwin->w_cursor.lnum = topline;
2641 curwin->w_valid &=
2642 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2643 }
2644 if (cln > botline && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2645 {
2646 curwin->w_cursor.lnum = botline;
2647 curwin->w_valid &=
2648 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2649 }
2650 }
2651 curwin->w_valid |= VALID_TOPLINE;
2652}
2653
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01002654static void get_scroll_overlap(lineoff_T *lp, int dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655
2656/*
2657 * move screen 'count' pages up or down and update screen
2658 *
2659 * return FAIL for failure, OK otherwise
2660 */
2661 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002662onepage(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663{
2664 long n;
2665 int retval = OK;
2666 lineoff_T loff;
2667 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002668 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669
Bram Moolenaar85a20022019-12-21 18:25:54 +01002670 if (curbuf->b_ml.ml_line_count == 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 {
2672 beep_flush();
2673 return FAIL;
2674 }
2675
2676 for ( ; count > 0; --count)
2677 {
2678 validate_botline();
2679 /*
2680 * It's an error to move a page up when the first line is already on
2681 * the screen. It's an error to move a page down when the last line
2682 * is on the screen and the topline is 'scrolloff' lines from the
2683 * last line.
2684 */
2685 if (dir == FORWARD
Bram Moolenaar375e3392019-01-31 18:26:10 +01002686 ? ((curwin->w_topline >= curbuf->b_ml.ml_line_count - so)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 && curwin->w_botline > curbuf->b_ml.ml_line_count)
2688 : (curwin->w_topline == 1
2689#ifdef FEAT_DIFF
2690 && curwin->w_topfill ==
2691 diff_check_fill(curwin, curwin->w_topline)
2692#endif
2693 ))
2694 {
2695 beep_flush();
2696 retval = FAIL;
2697 break;
2698 }
2699
2700#ifdef FEAT_DIFF
2701 loff.fill = 0;
2702#endif
2703 if (dir == FORWARD)
2704 {
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002705 if (ONE_WINDOW && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002707 // Vi compatible scrolling
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002708 if (p_window <= 2)
2709 ++curwin->w_topline;
2710 else
2711 curwin->w_topline += p_window - 2;
2712 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
2713 curwin->w_topline = curbuf->b_ml.ml_line_count;
2714 curwin->w_cursor.lnum = curwin->w_topline;
2715 }
2716 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2717 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002718 // at end of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 curwin->w_topline = curbuf->b_ml.ml_line_count;
2720#ifdef FEAT_DIFF
2721 curwin->w_topfill = 0;
2722#endif
2723 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2724 }
2725 else
2726 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002727 // For the overlap, start with the line just below the window
2728 // and go upwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 loff.lnum = curwin->w_botline;
2730#ifdef FEAT_DIFF
2731 loff.fill = diff_check_fill(curwin, loff.lnum)
2732 - curwin->w_filler_rows;
2733#endif
2734 get_scroll_overlap(&loff, -1);
2735 curwin->w_topline = loff.lnum;
2736#ifdef FEAT_DIFF
2737 curwin->w_topfill = loff.fill;
2738 check_topfill(curwin, FALSE);
2739#endif
2740 curwin->w_cursor.lnum = curwin->w_topline;
2741 curwin->w_valid &= ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|
2742 VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2743 }
2744 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002745 else // dir == BACKWARDS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 {
2747#ifdef FEAT_DIFF
2748 if (curwin->w_topline == 1)
2749 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002750 // Include max number of filler lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 max_topfill();
2752 continue;
2753 }
2754#endif
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002755 if (ONE_WINDOW && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002756 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002757 // Vi compatible scrolling (sort of)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002758 if (p_window <= 2)
2759 --curwin->w_topline;
2760 else
2761 curwin->w_topline -= p_window - 2;
2762 if (curwin->w_topline < 1)
2763 curwin->w_topline = 1;
2764 curwin->w_cursor.lnum = curwin->w_topline + p_window - 1;
2765 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
2766 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2767 continue;
2768 }
2769
Bram Moolenaar85a20022019-12-21 18:25:54 +01002770 // Find the line at the top of the window that is going to be the
2771 // line at the bottom of the window. Make sure this results in
2772 // the same line as before doing CTRL-F.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 loff.lnum = curwin->w_topline - 1;
2774#ifdef FEAT_DIFF
2775 loff.fill = diff_check_fill(curwin, loff.lnum + 1)
2776 - curwin->w_topfill;
2777#endif
2778 get_scroll_overlap(&loff, 1);
2779
2780 if (loff.lnum >= curbuf->b_ml.ml_line_count)
2781 {
2782 loff.lnum = curbuf->b_ml.ml_line_count;
2783#ifdef FEAT_DIFF
2784 loff.fill = 0;
2785 }
2786 else
2787 {
2788 botline_topline(&loff);
2789#endif
2790 }
2791 curwin->w_cursor.lnum = loff.lnum;
2792
Bram Moolenaar85a20022019-12-21 18:25:54 +01002793 // Find the line just above the new topline to get the right line
2794 // at the bottom of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 n = 0;
2796 while (n <= curwin->w_height && loff.lnum >= 1)
2797 {
2798 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002799 if (loff.height == MAXCOL)
2800 n = MAXCOL;
2801 else
2802 n += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002804 if (loff.lnum < 1) // at begin of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 {
2806 curwin->w_topline = 1;
2807#ifdef FEAT_DIFF
2808 max_topfill();
2809#endif
2810 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2811 }
2812 else
2813 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002814 // Go two lines forward again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815#ifdef FEAT_DIFF
2816 topline_botline(&loff);
2817#endif
2818 botline_forw(&loff);
2819 botline_forw(&loff);
2820#ifdef FEAT_DIFF
2821 botline_topline(&loff);
2822#endif
2823#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01002824 // We're at the wrong end of a fold now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 (void)hasFolding(loff.lnum, &loff.lnum, NULL);
2826#endif
2827
Bram Moolenaar85a20022019-12-21 18:25:54 +01002828 // Always scroll at least one line. Avoid getting stuck on
2829 // very long lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 if (loff.lnum >= curwin->w_topline
2831#ifdef FEAT_DIFF
2832 && (loff.lnum > curwin->w_topline
2833 || loff.fill >= curwin->w_topfill)
2834#endif
2835 )
2836 {
2837#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002838 // First try using the maximum number of filler lines. If
2839 // that's not enough, backup one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 loff.fill = curwin->w_topfill;
2841 if (curwin->w_topfill < diff_check_fill(curwin,
2842 curwin->w_topline))
2843 max_topfill();
2844 if (curwin->w_topfill == loff.fill)
2845#endif
2846 {
2847 --curwin->w_topline;
2848#ifdef FEAT_DIFF
2849 curwin->w_topfill = 0;
2850#endif
2851 }
2852 comp_botline(curwin);
2853 curwin->w_cursor.lnum = curwin->w_botline - 1;
Bram Moolenaar3d6db142014-03-28 21:49:32 +01002854 curwin->w_valid &=
2855 ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|VALID_CROW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 }
2857 else
2858 {
2859 curwin->w_topline = loff.lnum;
2860#ifdef FEAT_DIFF
2861 curwin->w_topfill = loff.fill;
2862 check_topfill(curwin, FALSE);
2863#endif
2864 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2865 }
2866 }
2867 }
2868 }
2869#ifdef FEAT_FOLDING
2870 foldAdjustCursor();
2871#endif
2872 cursor_correct();
Bram Moolenaarbc54f3f2016-09-04 14:34:28 +02002873 check_cursor_col();
Bram Moolenaar7c626922005-02-07 22:01:03 +00002874 if (retval == OK)
2875 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876 curwin->w_valid &= ~(VALID_WCOL|VALID_WROW|VALID_VIRTCOL);
2877
Bram Moolenaar907dad72018-07-10 15:07:15 +02002878 if (retval == OK && dir == FORWARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 {
Bram Moolenaar907dad72018-07-10 15:07:15 +02002880 // Avoid the screen jumping up and down when 'scrolloff' is non-zero.
2881 // But make sure we scroll at least one line (happens with mix of long
2882 // wrapping lines and non-wrapping line).
2883 if (check_top_offset())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884 {
Bram Moolenaar907dad72018-07-10 15:07:15 +02002885 scroll_cursor_top(1, FALSE);
2886 if (curwin->w_topline <= old_topline
2887 && old_topline < curbuf->b_ml.ml_line_count)
2888 {
2889 curwin->w_topline = old_topline + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890#ifdef FEAT_FOLDING
Bram Moolenaar907dad72018-07-10 15:07:15 +02002891 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2892#endif
2893 }
2894 }
2895#ifdef FEAT_FOLDING
2896 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2898#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 }
2900
Bram Moolenaara4d158b2022-08-14 14:17:45 +01002901 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 return retval;
2903}
2904
2905/*
2906 * Decide how much overlap to use for page-up or page-down scrolling.
2907 * This is symmetric, so that doing both keeps the same lines displayed.
2908 * Three lines are examined:
2909 *
2910 * before CTRL-F after CTRL-F / before CTRL-B
2911 * etc. l1
2912 * l1 last but one line ------------
2913 * l2 last text line l2 top text line
2914 * ------------- l3 second text line
2915 * l3 etc.
2916 */
2917 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002918get_scroll_overlap(lineoff_T *lp, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919{
2920 int h1, h2, h3, h4;
2921 int min_height = curwin->w_height - 2;
2922 lineoff_T loff0, loff1, loff2;
2923
2924#ifdef FEAT_DIFF
2925 if (lp->fill > 0)
2926 lp->height = 1;
2927 else
2928 lp->height = plines_nofill(lp->lnum);
2929#else
2930 lp->height = plines(lp->lnum);
2931#endif
2932 h1 = lp->height;
2933 if (h1 > min_height)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002934 return; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935
2936 loff0 = *lp;
2937 if (dir > 0)
2938 botline_forw(lp);
2939 else
2940 topline_back(lp);
2941 h2 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002942 if (h2 == MAXCOL || h2 + h1 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002944 *lp = loff0; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 return;
2946 }
2947
2948 loff1 = *lp;
2949 if (dir > 0)
2950 botline_forw(lp);
2951 else
2952 topline_back(lp);
2953 h3 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002954 if (h3 == MAXCOL || h3 + h2 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002956 *lp = loff0; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957 return;
2958 }
2959
2960 loff2 = *lp;
2961 if (dir > 0)
2962 botline_forw(lp);
2963 else
2964 topline_back(lp);
2965 h4 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002966 if (h4 == MAXCOL || h4 + h3 + h2 > min_height || h3 + h2 + h1 > min_height)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002967 *lp = loff1; // 1 line overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968 else
Bram Moolenaar85a20022019-12-21 18:25:54 +01002969 *lp = loff2; // 2 lines overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970}
2971
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972/*
2973 * Scroll 'scroll' lines up or down.
2974 */
2975 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002976halfpage(int flag, linenr_T Prenum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977{
2978 long scrolled = 0;
2979 int i;
2980 int n;
2981 int room;
2982
2983 if (Prenum)
2984 curwin->w_p_scr = (Prenum > curwin->w_height) ?
2985 curwin->w_height : Prenum;
2986 n = (curwin->w_p_scr <= curwin->w_height) ?
2987 curwin->w_p_scr : curwin->w_height;
2988
Bram Moolenaard5d37532017-03-27 23:02:07 +02002989 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 validate_botline();
2991 room = curwin->w_empty_rows;
2992#ifdef FEAT_DIFF
2993 room += curwin->w_filler_rows;
2994#endif
2995 if (flag)
2996 {
2997 /*
2998 * scroll the text up
2999 */
3000 while (n > 0 && curwin->w_botline <= curbuf->b_ml.ml_line_count)
3001 {
3002#ifdef FEAT_DIFF
3003 if (curwin->w_topfill > 0)
3004 {
3005 i = 1;
Bram Moolenaar8455c5e2020-07-14 21:22:30 +02003006 --n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 --curwin->w_topfill;
3008 }
3009 else
3010#endif
3011 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02003012 i = PLINES_NOFILL(curwin->w_topline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 n -= i;
3014 if (n < 0 && scrolled > 0)
3015 break;
3016#ifdef FEAT_FOLDING
3017 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
3018#endif
3019 ++curwin->w_topline;
3020#ifdef FEAT_DIFF
3021 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
3022#endif
3023
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3025 {
3026 ++curwin->w_cursor.lnum;
3027 curwin->w_valid &=
3028 ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
3029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030 }
3031 curwin->w_valid &= ~(VALID_CROW|VALID_WROW);
3032 scrolled += i;
3033
3034 /*
3035 * Correct w_botline for changed w_topline.
3036 * Won't work when there are filler lines.
3037 */
3038#ifdef FEAT_DIFF
3039 if (curwin->w_p_diff)
3040 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
3041 else
3042#endif
3043 {
3044 room += i;
3045 do
3046 {
3047 i = plines(curwin->w_botline);
3048 if (i > room)
3049 break;
3050#ifdef FEAT_FOLDING
3051 (void)hasFolding(curwin->w_botline, NULL,
3052 &curwin->w_botline);
3053#endif
3054 ++curwin->w_botline;
3055 room -= i;
3056 } while (curwin->w_botline <= curbuf->b_ml.ml_line_count);
3057 }
3058 }
3059
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 /*
3061 * When hit bottom of the file: move cursor down.
3062 */
3063 if (n > 0)
3064 {
3065# ifdef FEAT_FOLDING
3066 if (hasAnyFolding(curwin))
3067 {
3068 while (--n >= 0
3069 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3070 {
3071 (void)hasFolding(curwin->w_cursor.lnum, NULL,
3072 &curwin->w_cursor.lnum);
3073 ++curwin->w_cursor.lnum;
3074 }
3075 }
3076 else
3077# endif
3078 curwin->w_cursor.lnum += n;
3079 check_cursor_lnum();
3080 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 }
3082 else
3083 {
3084 /*
3085 * scroll the text down
3086 */
3087 while (n > 0 && curwin->w_topline > 1)
3088 {
3089#ifdef FEAT_DIFF
3090 if (curwin->w_topfill < diff_check_fill(curwin, curwin->w_topline))
3091 {
3092 i = 1;
Bram Moolenaard00e0242019-03-20 21:42:20 +01003093 --n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 ++curwin->w_topfill;
3095 }
3096 else
3097#endif
3098 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02003099 i = PLINES_NOFILL(curwin->w_topline - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 n -= i;
3101 if (n < 0 && scrolled > 0)
3102 break;
3103 --curwin->w_topline;
3104#ifdef FEAT_FOLDING
3105 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
3106#endif
3107#ifdef FEAT_DIFF
3108 curwin->w_topfill = 0;
3109#endif
3110 }
3111 curwin->w_valid &= ~(VALID_CROW|VALID_WROW|
3112 VALID_BOTLINE|VALID_BOTLINE_AP);
3113 scrolled += i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 if (curwin->w_cursor.lnum > 1)
3115 {
3116 --curwin->w_cursor.lnum;
3117 curwin->w_valid &= ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
3118 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 }
Bram Moolenaard00e0242019-03-20 21:42:20 +01003120
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 /*
3122 * When hit top of the file: move cursor up.
3123 */
3124 if (n > 0)
3125 {
3126 if (curwin->w_cursor.lnum <= (linenr_T)n)
3127 curwin->w_cursor.lnum = 1;
3128 else
3129# ifdef FEAT_FOLDING
3130 if (hasAnyFolding(curwin))
3131 {
3132 while (--n >= 0 && curwin->w_cursor.lnum > 1)
3133 {
3134 --curwin->w_cursor.lnum;
3135 (void)hasFolding(curwin->w_cursor.lnum,
3136 &curwin->w_cursor.lnum, NULL);
3137 }
3138 }
3139 else
3140# endif
3141 curwin->w_cursor.lnum -= n;
3142 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 }
3144# ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01003145 // Move cursor to first line of closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 foldAdjustCursor();
3147# endif
3148#ifdef FEAT_DIFF
3149 check_topfill(curwin, !flag);
3150#endif
3151 cursor_correct();
3152 beginline(BL_SOL | BL_FIX);
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003153 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154}
Bram Moolenaar860cae12010-06-05 23:22:07 +02003155
Bram Moolenaar860cae12010-06-05 23:22:07 +02003156 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003157do_check_cursorbind(void)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003158{
3159 linenr_T line = curwin->w_cursor.lnum;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003160 colnr_T col = curwin->w_cursor.col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003161 colnr_T coladd = curwin->w_cursor.coladd;
Bram Moolenaar524780d2012-03-28 14:19:50 +02003162 colnr_T curswant = curwin->w_curswant;
3163 int set_curswant = curwin->w_set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003164 win_T *old_curwin = curwin;
3165 buf_T *old_curbuf = curbuf;
Bram Moolenaar61452852011-02-01 18:01:11 +01003166 int restart_edit_save;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003167 int old_VIsual_select = VIsual_select;
3168 int old_VIsual_active = VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003169
3170 /*
3171 * loop through the cursorbound windows
3172 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003173 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02003174 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003175 {
3176 curbuf = curwin->w_buffer;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003177 // skip original window and windows with 'noscrollbind'
Bram Moolenaar860cae12010-06-05 23:22:07 +02003178 if (curwin != old_curwin && curwin->w_p_crb)
3179 {
3180# ifdef FEAT_DIFF
3181 if (curwin->w_p_diff)
Bram Moolenaar025e3e02016-10-18 14:50:18 +02003182 curwin->w_cursor.lnum =
3183 diff_get_corresponding_line(old_curbuf, line);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003184 else
3185# endif
3186 curwin->w_cursor.lnum = line;
3187 curwin->w_cursor.col = col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003188 curwin->w_cursor.coladd = coladd;
Bram Moolenaar524780d2012-03-28 14:19:50 +02003189 curwin->w_curswant = curswant;
3190 curwin->w_set_curswant = set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003191
Bram Moolenaar85a20022019-12-21 18:25:54 +01003192 // Make sure the cursor is in a valid position. Temporarily set
3193 // "restart_edit" to allow the cursor to be beyond the EOL.
Bram Moolenaar61452852011-02-01 18:01:11 +01003194 restart_edit_save = restart_edit;
3195 restart_edit = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003196 check_cursor();
Bram Moolenaara315ce12022-06-24 12:38:57 +01003197
3198 // Avoid a scroll here for the cursor position, 'scrollbind' is
3199 // more important.
3200 if (!curwin->w_p_scb)
3201 validate_cursor();
3202
Bram Moolenaar61452852011-02-01 18:01:11 +01003203 restart_edit = restart_edit_save;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003204 // Correct cursor for multi-byte character.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003205 if (has_mbyte)
3206 mb_adjust_cursor();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003207 redraw_later(UPD_VALID);
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01003208
Bram Moolenaar85a20022019-12-21 18:25:54 +01003209 // Only scroll when 'scrollbind' hasn't done this.
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01003210 if (!curwin->w_p_scb)
3211 update_topline();
Bram Moolenaar860cae12010-06-05 23:22:07 +02003212 curwin->w_redr_status = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003213 }
3214 }
3215
3216 /*
3217 * reset current-window
3218 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003219 VIsual_select = old_VIsual_select;
3220 VIsual_active = old_VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003221 curwin = old_curwin;
3222 curbuf = old_curbuf;
3223}