blob: 75cfadf55794e252a0e49e4a26ebd6110f8c31f7 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * move.c: Functions for moving the cursor and scrolling text.
11 *
12 * There are two ways to move the cursor:
13 * 1. Move the cursor directly, the text is scrolled to keep the cursor in the
14 * window.
15 * 2. Scroll the text, the cursor is moved into the text visible in the
16 * window.
17 * The 'scrolloff' option makes this a bit complicated.
18 */
19
20#include "vim.h"
21
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010022static int scrolljump_value(void);
23static int check_top_offset(void);
24static void curs_rows(win_T *wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000025
26typedef struct
27{
Bram Moolenaar85a20022019-12-21 18:25:54 +010028 linenr_T lnum; // line number
Bram Moolenaar071d4272004-06-13 20:20:40 +000029#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +010030 int fill; // filler lines
Bram Moolenaar071d4272004-06-13 20:20:40 +000031#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +010032 int height; // height of added line
Bram Moolenaar071d4272004-06-13 20:20:40 +000033} lineoff_T;
34
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010035static void topline_back(lineoff_T *lp);
36static void botline_forw(lineoff_T *lp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000037
38/*
Bram Moolenaarf6196f42022-10-02 21:29:55 +010039 * Reduce "n" for the screen lines skipped with "wp->w_skipcol".
40 */
41 static int
42adjust_plines_for_skipcol(win_T *wp, int n)
43{
44 if (wp->w_skipcol == 0)
45 return n;
46
47 int off = 0;
48 int width = wp->w_width - win_col_off(wp);
49 if (wp->w_skipcol >= width)
50 {
51 ++off;
52 int skip = wp->w_skipcol - width;
53 width -= win_col_off2(wp);
54 while (skip >= width)
55 {
56 ++off;
57 skip -= width;
58 }
59 }
60 wp->w_valid &= ~VALID_WROW;
61 return n - off;
62}
63
64/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000065 * Compute wp->w_botline for the current wp->w_topline. Can be called after
66 * wp->w_topline changed.
67 */
68 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +010069comp_botline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000070{
71 int n;
72 linenr_T lnum;
73 int done;
74#ifdef FEAT_FOLDING
75 linenr_T last;
76 int folded;
77#endif
78
79 /*
80 * If w_cline_row is valid, start there.
81 * Otherwise have to start at w_topline.
82 */
83 check_cursor_moved(wp);
84 if (wp->w_valid & VALID_CROW)
85 {
86 lnum = wp->w_cursor.lnum;
87 done = wp->w_cline_row;
88 }
89 else
90 {
91 lnum = wp->w_topline;
92 done = 0;
93 }
94
95 for ( ; lnum <= wp->w_buffer->b_ml.ml_line_count; ++lnum)
96 {
97#ifdef FEAT_FOLDING
98 last = lnum;
99 folded = FALSE;
100 if (hasFoldingWin(wp, lnum, NULL, &last, TRUE, NULL))
101 {
102 n = 1;
103 folded = TRUE;
104 }
105 else
106#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100107 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108#ifdef FEAT_DIFF
109 if (lnum == wp->w_topline)
110 n = plines_win_nofill(wp, lnum, TRUE) + wp->w_topfill;
111 else
112#endif
113 n = plines_win(wp, lnum, TRUE);
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100114 if (lnum == wp->w_topline)
115 n = adjust_plines_for_skipcol(wp, n);
116 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117 if (
118#ifdef FEAT_FOLDING
119 lnum <= wp->w_cursor.lnum && last >= wp->w_cursor.lnum
120#else
121 lnum == wp->w_cursor.lnum
122#endif
123 )
124 {
125 wp->w_cline_row = done;
126 wp->w_cline_height = n;
127#ifdef FEAT_FOLDING
128 wp->w_cline_folded = folded;
129#endif
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100130 redraw_for_cursorline(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131 wp->w_valid |= (VALID_CROW|VALID_CHEIGHT);
132 }
133 if (done + n > wp->w_height)
134 break;
135 done += n;
136#ifdef FEAT_FOLDING
137 lnum = last;
138#endif
139 }
140
Bram Moolenaar85a20022019-12-21 18:25:54 +0100141 // wp->w_botline is the line that is just below the window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142 wp->w_botline = lnum;
143 wp->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
144
145 set_empty_rows(wp, done);
146}
147
148/*
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100149 * Redraw when w_cline_row changes and 'relativenumber' or 'cursorline' is
150 * set.
151 */
Bram Moolenaarbbb5f8d2019-01-31 13:22:32 +0100152 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100153redraw_for_cursorline(win_T *wp)
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100154{
155 if ((wp->w_p_rnu
156#ifdef FEAT_SYN_HL
157 || wp->w_p_cul
158#endif
159 )
160 && (wp->w_valid & VALID_CROW) == 0
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200161 && !pum_visible())
Bram Moolenaar90a99792018-09-12 21:52:18 +0200162 {
zeertzjqc20e46a2022-03-23 14:55:23 +0000163 // win_line() will redraw the number column and cursorline only.
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100164 redraw_win_later(wp, UPD_VALID);
Bram Moolenaar90a99792018-09-12 21:52:18 +0200165 }
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100166}
167
zeertzjq3e559cd2022-03-27 19:26:55 +0100168#ifdef FEAT_SYN_HL
169/*
170 * Redraw when w_virtcol changes and 'cursorcolumn' is set or 'cursorlineopt'
171 * contains "screenline".
172 */
173 static void
174redraw_for_cursorcolumn(win_T *wp)
175{
176 if ((wp->w_valid & VALID_VIRTCOL) == 0 && !pum_visible())
177 {
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100178 // When 'cursorcolumn' is set need to redraw with UPD_SOME_VALID.
zeertzjq3e559cd2022-03-27 19:26:55 +0100179 if (wp->w_p_cuc)
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100180 redraw_win_later(wp, UPD_SOME_VALID);
181 // When 'cursorlineopt' contains "screenline" need to redraw with
182 // UPD_VALID.
zeertzjq3e559cd2022-03-27 19:26:55 +0100183 else if (wp->w_p_cul && (wp->w_p_culopt_flags & CULOPT_SCRLINE))
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100184 redraw_win_later(wp, UPD_VALID);
zeertzjq3e559cd2022-03-27 19:26:55 +0100185 }
186}
187#endif
188
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100189/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190 * Update curwin->w_topline and redraw if necessary.
191 * Used to update the screen before printing a message.
192 */
193 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100194update_topline_redraw(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195{
196 update_topline();
197 if (must_redraw)
198 update_screen(0);
199}
200
201/*
202 * Update curwin->w_topline to move the cursor onto the screen.
203 */
204 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100205update_topline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206{
207 long line_count;
208 int halfheight;
209 int n;
210 linenr_T old_topline;
211#ifdef FEAT_DIFF
212 int old_topfill;
213#endif
214#ifdef FEAT_FOLDING
215 linenr_T lnum;
216#endif
217 int check_topline = FALSE;
218 int check_botline = FALSE;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +0100219 long *so_ptr = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100220 int save_so = *so_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221
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 {
269 if (curwin->w_topline > 1)
270 {
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;
278 }
279#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +0100280 // Check if there are more filler lines than allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281 if (!check_topline && curwin->w_topfill > diff_check_fill(curwin,
282 curwin->w_topline))
283 check_topline = TRUE;
284#endif
285
286 if (check_topline)
287 {
288 halfheight = curwin->w_height / 2 - 1;
289 if (halfheight < 2)
290 halfheight = 2;
291
292#ifdef FEAT_FOLDING
293 if (hasAnyFolding(curwin))
294 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100295 // Count the number of logical lines between the cursor and
296 // topline + scrolloff (approximation of how much will be
297 // scrolled).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 n = 0;
299 for (lnum = curwin->w_cursor.lnum;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100300 lnum < curwin->w_topline + *so_ptr; ++lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 {
302 ++n;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100303 // stop at end of file or when we know we are far off
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304 if (lnum >= curbuf->b_ml.ml_line_count || n >= halfheight)
305 break;
306 (void)hasFolding(lnum, NULL, &lnum);
307 }
308 }
309 else
310#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +0100311 n = curwin->w_topline + *so_ptr - curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312
Bram Moolenaar85a20022019-12-21 18:25:54 +0100313 // If we weren't very close to begin with, we scroll to put the
314 // cursor in the middle of the window. Otherwise put the cursor
315 // near the top of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316 if (n >= halfheight)
317 scroll_cursor_halfway(FALSE);
318 else
319 {
Bram Moolenaar1e015462005-09-25 22:16:38 +0000320 scroll_cursor_top(scrolljump_value(), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321 check_botline = TRUE;
322 }
323 }
324
325 else
326 {
327#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100328 // Make sure topline is the first line of a fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
330#endif
331 check_botline = TRUE;
332 }
333 }
334
335 /*
336 * If the cursor is below the bottom of the window, scroll the window
337 * to put the cursor on the window.
338 * When w_botline is invalid, recompute it first, to avoid a redraw later.
339 * If w_botline was approximated, we might need a redraw later in a few
340 * cases, but we don't want to spend (a lot of) time recomputing w_botline
341 * for every small change.
342 */
343 if (check_botline)
344 {
345 if (!(curwin->w_valid & VALID_BOTLINE_AP))
346 validate_botline();
347
348 if (curwin->w_botline <= curbuf->b_ml.ml_line_count)
349 {
Bram Moolenaard4153d42008-11-15 15:06:17 +0000350 if (curwin->w_cursor.lnum < curwin->w_botline)
351 {
352 if (((long)curwin->w_cursor.lnum
Bram Moolenaar8088ae92022-06-20 11:38:17 +0100353 >= (long)curwin->w_botline - *so_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354#ifdef FEAT_FOLDING
355 || hasAnyFolding(curwin)
356#endif
357 ))
Bram Moolenaard4153d42008-11-15 15:06:17 +0000358 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359 lineoff_T loff;
360
Bram Moolenaar85a20022019-12-21 18:25:54 +0100361 // Cursor is (a few lines) above botline, check if there are
362 // 'scrolloff' window lines below the cursor. If not, need to
363 // scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 n = curwin->w_empty_rows;
365 loff.lnum = curwin->w_cursor.lnum;
366#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100367 // In a fold go to its last line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 (void)hasFolding(loff.lnum, NULL, &loff.lnum);
369#endif
370#ifdef FEAT_DIFF
371 loff.fill = 0;
372 n += curwin->w_filler_rows;
373#endif
374 loff.height = 0;
375 while (loff.lnum < curwin->w_botline
376#ifdef FEAT_DIFF
377 && (loff.lnum + 1 < curwin->w_botline || loff.fill == 0)
378#endif
379 )
380 {
381 n += loff.height;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100382 if (n >= *so_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383 break;
384 botline_forw(&loff);
385 }
Bram Moolenaar375e3392019-01-31 18:26:10 +0100386 if (n >= *so_ptr)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100387 // sufficient context, no need to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 check_botline = FALSE;
Bram Moolenaard4153d42008-11-15 15:06:17 +0000389 }
390 else
Bram Moolenaar85a20022019-12-21 18:25:54 +0100391 // sufficient context, no need to scroll
Bram Moolenaard4153d42008-11-15 15:06:17 +0000392 check_botline = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 }
394 if (check_botline)
395 {
396#ifdef FEAT_FOLDING
397 if (hasAnyFolding(curwin))
398 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100399 // Count the number of logical lines between the cursor and
400 // botline - scrolloff (approximation of how much will be
401 // scrolled).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402 line_count = 0;
403 for (lnum = curwin->w_cursor.lnum;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100404 lnum >= curwin->w_botline - *so_ptr; --lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405 {
406 ++line_count;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100407 // stop at end of file or when we know we are far off
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408 if (lnum <= 0 || line_count > curwin->w_height + 1)
409 break;
410 (void)hasFolding(lnum, &lnum, NULL);
411 }
412 }
413 else
414#endif
415 line_count = curwin->w_cursor.lnum - curwin->w_botline
Bram Moolenaar8088ae92022-06-20 11:38:17 +0100416 + 1 + *so_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 if (line_count <= curwin->w_height + 1)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000418 scroll_cursor_bot(scrolljump_value(), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419 else
420 scroll_cursor_halfway(FALSE);
421 }
422 }
423 }
424 curwin->w_valid |= VALID_TOPLINE;
425
426 /*
427 * Need to redraw when topline changed.
428 */
429 if (curwin->w_topline != old_topline
430#ifdef FEAT_DIFF
431 || curwin->w_topfill != old_topfill
432#endif
433 )
434 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +0100435 dollar_vcol = -1;
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000436 if (curwin->w_skipcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437 {
438 curwin->w_skipcol = 0;
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100439 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440 }
441 else
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100442 redraw_later(UPD_VALID);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100443 // May need to set w_skipcol when cursor in w_topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 if (curwin->w_cursor.lnum == curwin->w_topline)
445 validate_cursor();
446 }
447
Bram Moolenaar375e3392019-01-31 18:26:10 +0100448 *so_ptr = save_so;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449}
450
451/*
Bram Moolenaar1e015462005-09-25 22:16:38 +0000452 * Return the scrolljump value to use for the current window.
453 * When 'scrolljump' is positive use it as-is.
454 * When 'scrolljump' is negative use it as a percentage of the window height.
455 */
456 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100457scrolljump_value(void)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000458{
459 if (p_sj >= 0)
460 return (int)p_sj;
461 return (curwin->w_height * -p_sj) / 100;
462}
463
464/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 * Return TRUE when there are not 'scrolloff' lines above the cursor for the
466 * current window.
467 */
468 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100469check_top_offset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470{
471 lineoff_T loff;
472 int n;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +0100473 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474
Bram Moolenaar375e3392019-01-31 18:26:10 +0100475 if (curwin->w_cursor.lnum < curwin->w_topline + so
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476#ifdef FEAT_FOLDING
477 || hasAnyFolding(curwin)
478#endif
479 )
480 {
481 loff.lnum = curwin->w_cursor.lnum;
482#ifdef FEAT_DIFF
483 loff.fill = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100484 n = curwin->w_topfill; // always have this context
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485#else
486 n = 0;
487#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +0100488 // Count the visible screen lines above the cursor line.
Bram Moolenaar375e3392019-01-31 18:26:10 +0100489 while (n < so)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 {
491 topline_back(&loff);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100492 // Stop when included a line above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493 if (loff.lnum < curwin->w_topline
494#ifdef FEAT_DIFF
495 || (loff.lnum == curwin->w_topline && loff.fill > 0)
496#endif
497 )
498 break;
499 n += loff.height;
500 }
Bram Moolenaar375e3392019-01-31 18:26:10 +0100501 if (n < so)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 return TRUE;
503 }
504 return FALSE;
505}
506
Bram Moolenaare24b4ab2022-09-16 20:51:14 +0100507/*
508 * Update w_curswant.
509 */
510 void
511update_curswant_force(void)
512{
513 validate_virtcol();
514 curwin->w_curswant = curwin->w_virtcol
515#ifdef FEAT_PROP_POPUP
516 - curwin->w_virtcol_first_char
517#endif
518 ;
519 curwin->w_set_curswant = FALSE;
520}
521
522/*
523 * Update w_curswant if w_set_curswant is set.
524 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100526update_curswant(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527{
528 if (curwin->w_set_curswant)
Bram Moolenaare24b4ab2022-09-16 20:51:14 +0100529 update_curswant_force();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530}
531
532/*
533 * Check if the cursor has moved. Set the w_valid flag accordingly.
534 */
535 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100536check_cursor_moved(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537{
538 if (wp->w_cursor.lnum != wp->w_valid_cursor.lnum)
539 {
540 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
Bram Moolenaara91cb982022-05-08 19:39:31 +0100541 |VALID_CHEIGHT|VALID_CROW|VALID_TOPLINE
542 |VALID_BOTLINE|VALID_BOTLINE_AP);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543 wp->w_valid_cursor = wp->w_cursor;
544 wp->w_valid_leftcol = wp->w_leftcol;
545 }
546 else if (wp->w_cursor.col != wp->w_valid_cursor.col
547 || wp->w_leftcol != wp->w_valid_leftcol
Bram Moolenaar29ddebe2019-01-26 17:28:26 +0100548 || wp->w_cursor.coladd != wp->w_valid_cursor.coladd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 {
550 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL);
551 wp->w_valid_cursor.col = wp->w_cursor.col;
552 wp->w_valid_leftcol = wp->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 wp->w_valid_cursor.coladd = wp->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 }
555}
556
557/*
558 * Call this function when some window settings have changed, which require
559 * the cursor position, botline and topline to be recomputed and the window to
560 * be redrawn. E.g, when changing the 'wrap' option or folding.
561 */
562 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100563changed_window_setting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564{
565 changed_window_setting_win(curwin);
566}
567
568 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100569changed_window_setting_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570{
571 wp->w_lines_valid = 0;
572 changed_line_abv_curs_win(wp);
573 wp->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP|VALID_TOPLINE);
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100574 redraw_win_later(wp, UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575}
576
577/*
578 * Set wp->w_topline to a certain number.
579 */
580 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100581set_topline(win_T *wp, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582{
Bram Moolenaar04626c22021-09-01 16:02:07 +0200583#ifdef FEAT_DIFF
584 linenr_T prev_topline = wp->w_topline;
585#endif
586
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100588 // go to first of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
590#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +0100591 // Approximate the value of w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 wp->w_botline += lnum - wp->w_topline;
Bram Moolenaar23999d72020-12-23 14:36:00 +0100593 if (wp->w_botline > wp->w_buffer->b_ml.ml_line_count + 1)
594 wp->w_botline = wp->w_buffer->b_ml.ml_line_count + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595 wp->w_topline = lnum;
Bram Moolenaard4153d42008-11-15 15:06:17 +0000596 wp->w_topline_was_set = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597#ifdef FEAT_DIFF
Bram Moolenaar04626c22021-09-01 16:02:07 +0200598 if (lnum != prev_topline)
599 // Keep the filler lines when the topline didn't change.
600 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601#endif
602 wp->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_TOPLINE);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100603 // Don't set VALID_TOPLINE here, 'scrolloff' needs to be checked.
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100604 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605}
606
607/*
608 * Call this function when the length of the cursor line (in screen
609 * characters) has changed, and the change is before the cursor.
610 * Need to take care of w_botline separately!
611 */
612 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100613changed_cline_bef_curs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614{
615 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
616 |VALID_CHEIGHT|VALID_TOPLINE);
617}
618
619 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100620changed_cline_bef_curs_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621{
622 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
623 |VALID_CHEIGHT|VALID_TOPLINE);
624}
625
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626/*
627 * Call this function when the length of a line (in screen characters) above
628 * the cursor have changed.
629 * Need to take care of w_botline separately!
630 */
631 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100632changed_line_abv_curs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633{
634 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL|VALID_CROW
635 |VALID_CHEIGHT|VALID_TOPLINE);
636}
637
638 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100639changed_line_abv_curs_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640{
641 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL|VALID_CROW
642 |VALID_CHEIGHT|VALID_TOPLINE);
643}
644
645/*
Bram Moolenaar326c5d32022-08-12 13:05:49 +0100646 * Display of line has changed for "buf", invalidate cursor position and
647 * w_botline.
648 */
649 void
650changed_line_display_buf(buf_T *buf)
651{
652 win_T *wp;
653
654 FOR_ALL_WINDOWS(wp)
655 if (wp->w_buffer == buf)
656 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
657 |VALID_CROW|VALID_CHEIGHT
658 |VALID_TOPLINE|VALID_BOTLINE|VALID_BOTLINE_AP);
659}
660
661/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 * Make sure the value of curwin->w_botline is valid.
663 */
664 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100665validate_botline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666{
Bram Moolenaar23999d72020-12-23 14:36:00 +0100667 validate_botline_win(curwin);
668}
669
670/*
671 * Make sure the value of wp->w_botline is valid.
672 */
673 void
674validate_botline_win(win_T *wp)
675{
676 if (!(wp->w_valid & VALID_BOTLINE))
677 comp_botline(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678}
679
680/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 * Mark curwin->w_botline as invalid (because of some change in the buffer).
682 */
683 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100684invalidate_botline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685{
686 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
687}
688
689 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100690invalidate_botline_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691{
692 wp->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
693}
694
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100696approximate_botline_win(
697 win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698{
699 wp->w_valid &= ~VALID_BOTLINE;
700}
701
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702/*
703 * Return TRUE if curwin->w_wrow and curwin->w_wcol are valid.
704 */
705 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100706cursor_valid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707{
708 check_cursor_moved(curwin);
709 return ((curwin->w_valid & (VALID_WROW|VALID_WCOL)) ==
710 (VALID_WROW|VALID_WCOL));
711}
712
713/*
714 * Validate cursor position. Makes sure w_wrow and w_wcol are valid.
715 * w_topline must be valid, you may need to call update_topline() first!
716 */
717 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100718validate_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719{
Bram Moolenaard4566c12022-09-24 21:06:39 +0100720 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 check_cursor_moved(curwin);
722 if ((curwin->w_valid & (VALID_WCOL|VALID_WROW)) != (VALID_WCOL|VALID_WROW))
723 curs_columns(TRUE);
724}
725
726#if defined(FEAT_GUI) || defined(PROTO)
727/*
728 * validate w_cline_row.
729 */
730 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100731validate_cline_row(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732{
733 /*
734 * First make sure that w_topline is valid (after moving the cursor).
735 */
736 update_topline();
737 check_cursor_moved(curwin);
738 if (!(curwin->w_valid & VALID_CROW))
Bram Moolenaar3f9be972014-12-13 21:09:57 +0100739 curs_rows(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740}
741#endif
742
743/*
744 * Compute wp->w_cline_row and wp->w_cline_height, based on the current value
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200745 * of wp->w_topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 */
747 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100748curs_rows(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749{
750 linenr_T lnum;
751 int i;
752 int all_invalid;
753 int valid;
754#ifdef FEAT_FOLDING
755 long fold_count;
756#endif
757
Bram Moolenaar85a20022019-12-21 18:25:54 +0100758 // Check if wp->w_lines[].wl_size is invalid
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 all_invalid = (!redrawing()
760 || wp->w_lines_valid == 0
761 || wp->w_lines[0].wl_lnum > wp->w_topline);
762 i = 0;
763 wp->w_cline_row = 0;
764 for (lnum = wp->w_topline; lnum < wp->w_cursor.lnum; ++i)
765 {
766 valid = FALSE;
767 if (!all_invalid && i < wp->w_lines_valid)
768 {
769 if (wp->w_lines[i].wl_lnum < lnum || !wp->w_lines[i].wl_valid)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100770 continue; // skip changed or deleted lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 if (wp->w_lines[i].wl_lnum == lnum)
772 {
773#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100774 // Check for newly inserted lines below this row, in which
775 // case we need to check for folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776 if (!wp->w_buffer->b_mod_set
777 || wp->w_lines[i].wl_lastlnum < wp->w_cursor.lnum
778 || wp->w_buffer->b_mod_top
779 > wp->w_lines[i].wl_lastlnum + 1)
780#endif
781 valid = TRUE;
782 }
783 else if (wp->w_lines[i].wl_lnum > lnum)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100784 --i; // hold at inserted lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 }
786 if (valid
787#ifdef FEAT_DIFF
788 && (lnum != wp->w_topline || !wp->w_p_diff)
789#endif
790 )
791 {
792#ifdef FEAT_FOLDING
793 lnum = wp->w_lines[i].wl_lastlnum + 1;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100794 // Cursor inside folded lines, don't count this row
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 if (lnum > wp->w_cursor.lnum)
796 break;
797#else
798 ++lnum;
799#endif
800 wp->w_cline_row += wp->w_lines[i].wl_size;
801 }
802 else
803 {
804#ifdef FEAT_FOLDING
805 fold_count = foldedCount(wp, lnum, NULL);
806 if (fold_count)
807 {
808 lnum += fold_count;
809 if (lnum > wp->w_cursor.lnum)
810 break;
811 ++wp->w_cline_row;
812 }
813 else
814#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100815 {
816 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817#ifdef FEAT_DIFF
818 if (lnum == wp->w_topline)
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100819 n = plines_win_nofill(wp, lnum, TRUE) + wp->w_topfill;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 else
821#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +0100822 n = plines_win(wp, lnum, TRUE);
823 if (lnum++ == wp->w_topline)
824 n = adjust_plines_for_skipcol(wp, n);
825 wp->w_cline_row += n;
826 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 }
828 }
829
830 check_cursor_moved(wp);
831 if (!(wp->w_valid & VALID_CHEIGHT))
832 {
833 if (all_invalid
834 || i == wp->w_lines_valid
835 || (i < wp->w_lines_valid
836 && (!wp->w_lines[i].wl_valid
837 || wp->w_lines[i].wl_lnum != wp->w_cursor.lnum)))
838 {
839#ifdef FEAT_DIFF
840 if (wp->w_cursor.lnum == wp->w_topline)
841 wp->w_cline_height = plines_win_nofill(wp, wp->w_cursor.lnum,
842 TRUE) + wp->w_topfill;
843 else
844#endif
845 wp->w_cline_height = plines_win(wp, wp->w_cursor.lnum, TRUE);
846#ifdef FEAT_FOLDING
847 wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
848 NULL, NULL, TRUE, NULL);
849#endif
850 }
851 else if (i > wp->w_lines_valid)
852 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100853 // a line that is too long to fit on the last screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 wp->w_cline_height = 0;
855#ifdef FEAT_FOLDING
856 wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
857 NULL, NULL, TRUE, NULL);
858#endif
859 }
860 else
861 {
862 wp->w_cline_height = wp->w_lines[i].wl_size;
863#ifdef FEAT_FOLDING
864 wp->w_cline_folded = wp->w_lines[i].wl_folded;
865#endif
866 }
867 }
868
Bram Moolenaar3d6db142014-03-28 21:49:32 +0100869 redraw_for_cursorline(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 wp->w_valid |= VALID_CROW|VALID_CHEIGHT;
871
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872}
873
874/*
875 * Validate curwin->w_virtcol only.
876 */
877 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100878validate_virtcol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879{
880 validate_virtcol_win(curwin);
881}
882
883/*
884 * Validate wp->w_virtcol only.
885 */
886 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100887validate_virtcol_win(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888{
889 check_cursor_moved(wp);
890 if (!(wp->w_valid & VALID_VIRTCOL))
891 {
Bram Moolenaar04e0ed12022-09-10 20:00:56 +0100892#ifdef FEAT_PROP_POPUP
893 wp->w_virtcol_first_char = 0;
894#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 getvvcol(wp, &wp->w_cursor, NULL, &(wp->w_virtcol), NULL);
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000896#ifdef FEAT_SYN_HL
zeertzjq3e559cd2022-03-27 19:26:55 +0100897 redraw_for_cursorcolumn(wp);
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000898#endif
zeertzjq3e559cd2022-03-27 19:26:55 +0100899 wp->w_valid |= VALID_VIRTCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 }
901}
902
903/*
904 * Validate curwin->w_cline_height only.
905 */
Bram Moolenaar09dd2bb2019-12-14 18:42:15 +0100906 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100907validate_cheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908{
909 check_cursor_moved(curwin);
910 if (!(curwin->w_valid & VALID_CHEIGHT))
911 {
912#ifdef FEAT_DIFF
913 if (curwin->w_cursor.lnum == curwin->w_topline)
914 curwin->w_cline_height = plines_nofill(curwin->w_cursor.lnum)
915 + curwin->w_topfill;
916 else
917#endif
918 curwin->w_cline_height = plines(curwin->w_cursor.lnum);
919#ifdef FEAT_FOLDING
920 curwin->w_cline_folded = hasFolding(curwin->w_cursor.lnum, NULL, NULL);
921#endif
922 curwin->w_valid |= VALID_CHEIGHT;
923 }
924}
925
926/*
Bram Moolenaarc236c162008-07-13 17:41:49 +0000927 * Validate w_wcol and w_virtcol only.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928 */
929 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100930validate_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931{
932 colnr_T off;
933 colnr_T col;
Bram Moolenaar6427c602010-02-03 17:43:07 +0100934 int width;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935
936 validate_virtcol();
937 if (!(curwin->w_valid & VALID_WCOL))
938 {
939 col = curwin->w_virtcol;
940 off = curwin_col_off();
941 col += off;
Bram Moolenaar02631462017-09-22 15:20:32 +0200942 width = curwin->w_width - off + curwin_col_off2();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943
Bram Moolenaar85a20022019-12-21 18:25:54 +0100944 // long line wrapping, adjust curwin->w_wrow
Bram Moolenaarc236c162008-07-13 17:41:49 +0000945 if (curwin->w_p_wrap
Bram Moolenaar02631462017-09-22 15:20:32 +0200946 && col >= (colnr_T)curwin->w_width
Bram Moolenaar6427c602010-02-03 17:43:07 +0100947 && width > 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100948 // use same formula as what is used in curs_columns()
Bram Moolenaar02631462017-09-22 15:20:32 +0200949 col -= ((col - curwin->w_width) / width + 1) * width;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000950 if (col > (int)curwin->w_leftcol)
951 col -= curwin->w_leftcol;
952 else
953 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954 curwin->w_wcol = col;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000955
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 curwin->w_valid |= VALID_WCOL;
Bram Moolenaar4792a672020-11-15 21:11:18 +0100957#ifdef FEAT_PROP_POPUP
Bram Moolenaar6a076442020-11-15 20:32:58 +0100958 curwin->w_flags &= ~WFLAG_WCOL_OFF_ADDED;
Bram Moolenaar4792a672020-11-15 21:11:18 +0100959#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 }
961}
962
963/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200964 * Compute offset of a window, occupied by absolute or relative line number,
965 * fold column and sign column (these don't move when scrolling horizontally).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 */
967 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100968win_col_off(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969{
Bram Moolenaar64486672010-05-16 15:46:46 +0200970 return (((wp->w_p_nu || wp->w_p_rnu) ? number_width(wp) + 1 : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971#ifdef FEAT_CMDWIN
972 + (cmdwin_type == 0 || wp != curwin ? 0 : 1)
973#endif
974#ifdef FEAT_FOLDING
975 + wp->w_p_fdc
976#endif
977#ifdef FEAT_SIGNS
Bram Moolenaar95ec9d62016-08-12 18:29:59 +0200978 + (signcolumn_on(wp) ? 2 : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979#endif
980 );
981}
982
983 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100984curwin_col_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985{
986 return win_col_off(curwin);
987}
988
989/*
990 * Return the difference in column offset for the second screen line of a
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +0100991 * wrapped line. It's positive if 'number' or 'relativenumber' is on and 'n'
992 * is in 'cpoptions'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 */
994 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100995win_col_off2(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996{
Bram Moolenaar64486672010-05-16 15:46:46 +0200997 if ((wp->w_p_nu || wp->w_p_rnu) && vim_strchr(p_cpo, CPO_NUMCOL) != NULL)
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000998 return number_width(wp) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 return 0;
1000}
1001
1002 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001003curwin_col_off2(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004{
1005 return win_col_off2(curwin);
1006}
1007
1008/*
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001009 * Compute curwin->w_wcol and curwin->w_virtcol.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 * Also updates curwin->w_wrow and curwin->w_cline_row.
1011 * Also updates curwin->w_leftcol.
1012 */
1013 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001014curs_columns(
Bram Moolenaar85a20022019-12-21 18:25:54 +01001015 int may_scroll) // when TRUE, may scroll horizontally
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016{
1017 int diff;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001018 int extra; // offset for first screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 int off_left, off_right;
1020 int n;
1021 int p_lines;
1022 int width = 0;
1023 int textwidth;
1024 int new_leftcol;
1025 colnr_T startcol;
1026 colnr_T endcol;
1027 colnr_T prev_skipcol;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01001028 long so = get_scrolloff_value();
1029 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030
1031 /*
1032 * First make sure that w_topline is valid (after moving the cursor).
1033 */
Luuk van Baal13ece2a2022-10-03 15:28:08 +01001034 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035
1036 /*
1037 * Next make sure that w_cline_row is valid.
1038 */
1039 if (!(curwin->w_valid & VALID_CROW))
Bram Moolenaar3f9be972014-12-13 21:09:57 +01001040 curs_rows(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001042#ifdef FEAT_PROP_POPUP
1043 // will be set by getvvcol() but not reset
1044 curwin->w_virtcol_first_char = 0;
1045#endif
1046
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 /*
1048 * Compute the number of virtual columns.
1049 */
1050#ifdef FEAT_FOLDING
1051 if (curwin->w_cline_folded)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001052 // In a folded line the cursor is always in the first column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 startcol = curwin->w_virtcol = endcol = curwin->w_leftcol;
1054 else
1055#endif
1056 getvvcol(curwin, &curwin->w_cursor,
1057 &startcol, &(curwin->w_virtcol), &endcol);
1058
Bram Moolenaar85a20022019-12-21 18:25:54 +01001059 // remove '$' from change command when cursor moves onto it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 if (startcol > dollar_vcol)
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001061 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062
1063 extra = curwin_col_off();
1064 curwin->w_wcol = curwin->w_virtcol + extra;
1065 endcol += extra;
1066
1067 /*
1068 * Now compute w_wrow, counting screen lines from w_cline_row.
1069 */
1070 curwin->w_wrow = curwin->w_cline_row;
1071
Bram Moolenaar02631462017-09-22 15:20:32 +02001072 textwidth = curwin->w_width - extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 if (textwidth <= 0)
1074 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001075 // No room for text, put cursor in last char of window.
Bram Moolenaar30441bb2021-07-08 13:19:31 +02001076 // If not wrapping, the last non-empty line.
Bram Moolenaar02631462017-09-22 15:20:32 +02001077 curwin->w_wcol = curwin->w_width - 1;
Bram Moolenaar30441bb2021-07-08 13:19:31 +02001078 if (curwin->w_p_wrap)
1079 curwin->w_wrow = curwin->w_height - 1;
1080 else
1081 curwin->w_wrow = curwin->w_height - 1 - curwin->w_empty_rows;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02001083 else if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 {
1085 width = textwidth + curwin_col_off2();
1086
Bram Moolenaar85a20022019-12-21 18:25:54 +01001087 // long line wrapping, adjust curwin->w_wrow
Bram Moolenaar02631462017-09-22 15:20:32 +02001088 if (curwin->w_wcol >= curwin->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 {
Bram Moolenaar439b3ac2019-11-10 01:32:12 +01001090#ifdef FEAT_LINEBREAK
Bram Moolenaaree857022019-11-09 23:26:40 +01001091 char_u *sbr;
Bram Moolenaar439b3ac2019-11-10 01:32:12 +01001092#endif
Bram Moolenaaree857022019-11-09 23:26:40 +01001093
Bram Moolenaar85a20022019-12-21 18:25:54 +01001094 // this same formula is used in validate_cursor_col()
Bram Moolenaar02631462017-09-22 15:20:32 +02001095 n = (curwin->w_wcol - curwin->w_width) / width + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 curwin->w_wcol -= n * width;
1097 curwin->w_wrow += n;
1098
1099#ifdef FEAT_LINEBREAK
Bram Moolenaar85a20022019-12-21 18:25:54 +01001100 // When cursor wraps to first char of next line in Insert
1101 // mode, the 'showbreak' string isn't shown, backup to first
1102 // column
Bram Moolenaaree857022019-11-09 23:26:40 +01001103 sbr = get_showbreak_value(curwin);
1104 if (*sbr && *ml_get_cursor() == NUL
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +01001105 && curwin->w_wcol == vim_strsize(sbr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 curwin->w_wcol = 0;
1107#endif
1108 }
1109 }
1110
Bram Moolenaar85a20022019-12-21 18:25:54 +01001111 // No line wrapping: compute curwin->w_leftcol if scrolling is on and line
1112 // is not folded.
1113 // If scrolling is off, curwin->w_leftcol is assumed to be 0
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001114 else if (may_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115#ifdef FEAT_FOLDING
1116 && !curwin->w_cline_folded
1117#endif
1118 )
1119 {
Bram Moolenaarc9dc03f2022-09-12 17:51:07 +01001120#ifdef FEAT_PROP_POPUP
1121 if (curwin->w_virtcol_first_char > 0)
1122 {
1123 int cols = (curwin->w_width - extra);
1124 int rows = cols > 0 ? curwin->w_virtcol_first_char / cols : 1;
1125
1126 // each "above" text prop shifts the text one row down
1127 curwin->w_wrow += rows;
1128 curwin->w_wcol -= rows * cols;
1129 endcol -= rows * cols;
1130 curwin->w_cline_height = rows + 1;
1131 }
1132#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 /*
1134 * If Cursor is left of the screen, scroll rightwards.
1135 * If Cursor is right of the screen, scroll leftwards
1136 * If we get closer to the edge than 'sidescrolloff', scroll a little
1137 * extra
1138 */
Bram Moolenaar375e3392019-01-31 18:26:10 +01001139 off_left = (int)startcol - (int)curwin->w_leftcol - siso;
Bram Moolenaar02631462017-09-22 15:20:32 +02001140 off_right = (int)endcol - (int)(curwin->w_leftcol + curwin->w_width
Bram Moolenaar375e3392019-01-31 18:26:10 +01001141 - siso) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 if (off_left < 0 || off_right > 0)
1143 {
1144 if (off_left < 0)
1145 diff = -off_left;
1146 else
1147 diff = off_right;
1148
Bram Moolenaar85a20022019-12-21 18:25:54 +01001149 // When far off or not enough room on either side, put cursor in
1150 // middle of window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 if (p_ss == 0 || diff >= textwidth / 2 || off_right >= off_left)
1152 new_leftcol = curwin->w_wcol - extra - textwidth / 2;
1153 else
1154 {
1155 if (diff < p_ss)
1156 diff = p_ss;
1157 if (off_left < 0)
1158 new_leftcol = curwin->w_leftcol - diff;
1159 else
1160 new_leftcol = curwin->w_leftcol + diff;
1161 }
1162 if (new_leftcol < 0)
1163 new_leftcol = 0;
1164 if (new_leftcol != (int)curwin->w_leftcol)
1165 {
1166 curwin->w_leftcol = new_leftcol;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001167 // screen has to be redrawn with new curwin->w_leftcol
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001168 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 }
1170 }
1171 curwin->w_wcol -= curwin->w_leftcol;
1172 }
1173 else if (curwin->w_wcol > (int)curwin->w_leftcol)
1174 curwin->w_wcol -= curwin->w_leftcol;
1175 else
1176 curwin->w_wcol = 0;
1177
1178#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01001179 // Skip over filler lines. At the top use w_topfill, there
1180 // may be some filler lines above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 if (curwin->w_cursor.lnum == curwin->w_topline)
1182 curwin->w_wrow += curwin->w_topfill;
1183 else
1184 curwin->w_wrow += diff_check_fill(curwin, curwin->w_cursor.lnum);
1185#endif
1186
1187 prev_skipcol = curwin->w_skipcol;
1188
1189 p_lines = 0;
Bram Moolenaar375e3392019-01-31 18:26:10 +01001190
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 if ((curwin->w_wrow >= curwin->w_height
1192 || ((prev_skipcol > 0
Bram Moolenaar375e3392019-01-31 18:26:10 +01001193 || curwin->w_wrow + so >= curwin->w_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 && (p_lines =
1195#ifdef FEAT_DIFF
1196 plines_win_nofill
1197#else
1198 plines_win
1199#endif
1200 (curwin, curwin->w_cursor.lnum, FALSE))
1201 - 1 >= curwin->w_height))
1202 && curwin->w_height != 0
1203 && curwin->w_cursor.lnum == curwin->w_topline
1204 && width > 0
Bram Moolenaar4033c552017-09-16 20:54:51 +02001205 && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001207 // Cursor past end of screen. Happens with a single line that does
1208 // not fit on screen. Find a skipcol to show the text around the
1209 // cursor. Avoid scrolling all the time. compute value of "extra":
1210 // 1: Less than 'scrolloff' lines above
1211 // 2: Less than 'scrolloff' lines below
1212 // 3: both of them
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 extra = 0;
Bram Moolenaar375e3392019-01-31 18:26:10 +01001214 if (curwin->w_skipcol + so * width > curwin->w_virtcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 extra = 1;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001216 // Compute last display line of the buffer line that we want at the
1217 // bottom of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 if (p_lines == 0)
1219 p_lines = plines_win(curwin, curwin->w_cursor.lnum, FALSE);
1220 --p_lines;
Bram Moolenaar375e3392019-01-31 18:26:10 +01001221 if (p_lines > curwin->w_wrow + so)
1222 n = curwin->w_wrow + so;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 else
1224 n = p_lines;
Bram Moolenaar8f33ebf2021-02-10 21:10:12 +01001225 if ((colnr_T)n >= curwin->w_height + curwin->w_skipcol / width - so)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 extra += 2;
1227
Bram Moolenaar8f33ebf2021-02-10 21:10:12 +01001228 if (extra == 3 || p_lines <= so * 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001230 // not enough room for 'scrolloff', put cursor in the middle
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 n = curwin->w_virtcol / width;
1232 if (n > curwin->w_height / 2)
1233 n -= curwin->w_height / 2;
1234 else
1235 n = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001236 // don't skip more than necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 if (n > p_lines - curwin->w_height + 1)
1238 n = p_lines - curwin->w_height + 1;
1239 curwin->w_skipcol = n * width;
1240 }
1241 else if (extra == 1)
1242 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001243 // less than 'scrolloff' lines above, decrease skipcol
Bram Moolenaar375e3392019-01-31 18:26:10 +01001244 extra = (curwin->w_skipcol + so * width - curwin->w_virtcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 + width - 1) / width;
1246 if (extra > 0)
1247 {
1248 if ((colnr_T)(extra * width) > curwin->w_skipcol)
1249 extra = curwin->w_skipcol / width;
1250 curwin->w_skipcol -= extra * width;
1251 }
1252 }
1253 else if (extra == 2)
1254 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001255 // less than 'scrolloff' lines below, increase skipcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 endcol = (n - curwin->w_height + 1) * width;
1257 while (endcol > curwin->w_virtcol)
1258 endcol -= width;
1259 if (endcol > curwin->w_skipcol)
1260 curwin->w_skipcol = endcol;
1261 }
1262
1263 curwin->w_wrow -= curwin->w_skipcol / width;
1264 if (curwin->w_wrow >= curwin->w_height)
1265 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001266 // small window, make sure cursor is in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 extra = curwin->w_wrow - curwin->w_height + 1;
1268 curwin->w_skipcol += extra * width;
1269 curwin->w_wrow -= extra;
1270 }
1271
1272 extra = ((int)prev_skipcol - (int)curwin->w_skipcol) / width;
1273 if (extra > 0)
1274 win_ins_lines(curwin, 0, extra, FALSE, FALSE);
1275 else if (extra < 0)
Bram Moolenaarcfce7172017-08-17 20:31:48 +02001276 win_del_lines(curwin, 0, -extra, FALSE, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 }
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001278 else if (!curwin->w_p_sms)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 curwin->w_skipcol = 0;
1280 if (prev_skipcol != curwin->w_skipcol)
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001281 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001283#ifdef FEAT_SYN_HL
zeertzjq3e559cd2022-03-27 19:26:55 +01001284 redraw_for_cursorcolumn(curwin);
Bram Moolenaarb6798752014-03-27 12:11:48 +01001285#endif
Bram Moolenaare52e0c82020-02-28 22:20:10 +01001286#if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
1287 if (popup_is_popup(curwin) && curbuf->b_term != NULL)
1288 {
1289 curwin->w_wrow += popup_top_extra(curwin);
1290 curwin->w_wcol += popup_left_extra(curwin);
Bram Moolenaar6a076442020-11-15 20:32:58 +01001291 curwin->w_flags |= WFLAG_WCOL_OFF_ADDED + WFLAG_WROW_OFF_ADDED;
Bram Moolenaare52e0c82020-02-28 22:20:10 +01001292 }
Bram Moolenaar6a076442020-11-15 20:32:58 +01001293 else
1294 curwin->w_flags &= ~(WFLAG_WCOL_OFF_ADDED + WFLAG_WROW_OFF_ADDED);
Bram Moolenaare52e0c82020-02-28 22:20:10 +01001295#endif
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001296
Bram Moolenaar08f23632019-11-16 14:19:33 +01001297 // now w_leftcol is valid, avoid check_cursor_moved() thinking otherwise
1298 curwin->w_valid_leftcol = curwin->w_leftcol;
1299
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 curwin->w_valid |= VALID_WCOL|VALID_WROW|VALID_VIRTCOL;
1301}
1302
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001303#if (defined(FEAT_EVAL) || defined(FEAT_PROP_POPUP)) || defined(PROTO)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001304/*
1305 * Compute the screen position of text character at "pos" in window "wp"
1306 * The resulting values are one-based, zero when character is not visible.
1307 */
Bram Moolenaar12034e22019-08-25 22:25:02 +02001308 void
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001309textpos2screenpos(
1310 win_T *wp,
1311 pos_T *pos,
1312 int *rowp, // screen row
1313 int *scolp, // start screen column
1314 int *ccolp, // cursor screen column
1315 int *ecolp) // end screen column
1316{
1317 colnr_T scol = 0, ccol = 0, ecol = 0;
1318 int row = 0;
1319 int rowoff = 0;
1320 colnr_T coloff = 0;
1321
Bram Moolenaar189663b2021-07-21 18:04:56 +02001322 if (pos->lnum >= wp->w_topline && pos->lnum <= wp->w_botline)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001323 {
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001324 colnr_T off;
1325 colnr_T col;
1326 int width;
1327 linenr_T lnum = pos->lnum;
1328#ifdef FEAT_FOLDING
1329 int is_folded;
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001330
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001331 is_folded = hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
1332#endif
1333 row = plines_m_win(wp, wp->w_topline, lnum - 1) + 1;
1334#ifdef FEAT_FOLDING
1335 if (is_folded)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001336 {
Bram Moolenaar7924a172022-01-24 16:15:15 +00001337 row += W_WINROW(wp);
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001338 coloff = wp->w_wincol + 1;
Bram Moolenaar7924a172022-01-24 16:15:15 +00001339 }
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001340 else
Bram Moolenaar4556a2e2022-02-15 13:40:17 +00001341#endif
1342 {
1343 getvcol(wp, pos, &scol, &ccol, &ecol);
1344
1345 // similar to what is done in validate_cursor_col()
1346 col = scol;
1347 off = win_col_off(wp);
1348 col += off;
1349 width = wp->w_width - off + win_col_off2(wp);
1350
1351 // long line wrapping, adjust row
1352 if (wp->w_p_wrap
1353 && col >= (colnr_T)wp->w_width
1354 && width > 0)
1355 {
1356 // use same formula as what is used in curs_columns()
1357 rowoff = ((col - wp->w_width) / width + 1);
1358 col -= rowoff * width;
1359 }
1360 col -= wp->w_leftcol;
1361 if (col >= wp->w_width)
1362 col = -1;
1363 if (col >= 0 && row + rowoff <= wp->w_height)
1364 {
1365 coloff = col - scol + wp->w_wincol + 1;
1366 row += W_WINROW(wp);
1367 }
1368 else
1369 // character is left, right or below of the window
1370 row = rowoff = scol = ccol = ecol = 0;
1371 }
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001372 }
Bram Moolenaar7924a172022-01-24 16:15:15 +00001373 *rowp = row + rowoff;
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001374 *scolp = scol + coloff;
1375 *ccolp = ccol + coloff;
1376 *ecolp = ecol + coloff;
1377}
Bram Moolenaar12034e22019-08-25 22:25:02 +02001378#endif
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001379
Bram Moolenaar12034e22019-08-25 22:25:02 +02001380#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001381/*
1382 * "screenpos({winid}, {lnum}, {col})" function
1383 */
1384 void
1385f_screenpos(typval_T *argvars UNUSED, typval_T *rettv)
1386{
1387 dict_T *dict;
1388 win_T *wp;
1389 pos_T pos;
1390 int row = 0;
1391 int scol = 0, ccol = 0, ecol = 0;
1392
Bram Moolenaar93a10962022-06-16 11:42:09 +01001393 if (rettv_dict_alloc(rettv) == FAIL)
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001394 return;
1395 dict = rettv->vval.v_dict;
1396
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02001397 if (in_vim9script()
1398 && (check_for_number_arg(argvars, 0) == FAIL
1399 || check_for_number_arg(argvars, 1) == FAIL
1400 || check_for_number_arg(argvars, 2) == FAIL))
1401 return;
1402
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001403 wp = find_win_by_nr_or_id(&argvars[0]);
1404 if (wp == NULL)
1405 return;
1406
1407 pos.lnum = tv_get_number(&argvars[1]);
1408 pos.col = tv_get_number(&argvars[2]) - 1;
1409 pos.coladd = 0;
1410 textpos2screenpos(wp, &pos, &row, &scol, &ccol, &ecol);
1411
1412 dict_add_number(dict, "row", row);
1413 dict_add_number(dict, "col", scol);
1414 dict_add_number(dict, "curscol", ccol);
1415 dict_add_number(dict, "endcol", ecol);
1416}
Bram Moolenaar5a6ec102022-05-27 21:58:00 +01001417
1418/*
1419 * "virtcol2col({winid}, {lnum}, {col})" function
1420 */
1421 void
1422f_virtcol2col(typval_T *argvars UNUSED, typval_T *rettv)
1423{
1424 win_T *wp;
1425 linenr_T lnum;
1426 int screencol;
1427 int error = FALSE;
1428
1429 rettv->vval.v_number = -1;
1430
1431 if (check_for_number_arg(argvars, 0) == FAIL
1432 || check_for_number_arg(argvars, 1) == FAIL
1433 || check_for_number_arg(argvars, 2) == FAIL)
1434 return;
1435
1436 wp = find_win_by_nr_or_id(&argvars[0]);
1437 if (wp == NULL)
1438 return;
1439
1440 lnum = tv_get_number_chk(&argvars[1], &error);
1441 if (error || lnum < 0 || lnum > wp->w_buffer->b_ml.ml_line_count)
1442 return;
1443
1444 screencol = tv_get_number_chk(&argvars[2], &error);
1445 if (error || screencol < 0)
1446 return;
1447
1448 rettv->vval.v_number = vcol2col(wp, lnum, screencol);
1449}
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001450#endif
1451
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452/*
1453 * Scroll the current window down by "line_count" logical lines. "CTRL-Y"
1454 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001456scrolldown(
1457 long line_count,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001458 int byfold UNUSED) // TRUE: count a closed fold as one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459{
Bram Moolenaar85a20022019-12-21 18:25:54 +01001460 long done = 0; // total # of physical lines done
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 int wrow;
1462 int moved = FALSE;
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001463 int width1 = 0;
1464 int width2 = 0;
1465
1466 if (curwin->w_p_wrap && curwin->w_p_sms)
1467 {
1468 width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001469 width2 = width1 + curwin_col_off2();
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001470 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471
1472#ifdef FEAT_FOLDING
1473 linenr_T first;
1474
Bram Moolenaar85a20022019-12-21 18:25:54 +01001475 // Make sure w_topline is at the first of a sequence of folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1477#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +01001478 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 while (line_count-- > 0)
1480 {
1481#ifdef FEAT_DIFF
Bram Moolenaarfa316dd2009-11-03 15:23:14 +00001482 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)
1483 && curwin->w_topfill < curwin->w_height - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 {
1485 ++curwin->w_topfill;
1486 ++done;
1487 }
1488 else
1489#endif
1490 {
Bram Moolenaar8df97482022-10-03 12:11:13 +01001491 // break when at the very top
1492 if (curwin->w_topline == 1
1493 && (!curwin->w_p_sms || curwin->w_skipcol < width1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 break;
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001495 if (curwin->w_p_wrap && curwin->w_p_sms
Bram Moolenaar8df97482022-10-03 12:11:13 +01001496 && curwin->w_skipcol >= width1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 {
Bram Moolenaar8df97482022-10-03 12:11:13 +01001498 // scroll a screen line down
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001499 if (curwin->w_skipcol >= width1 + width2)
1500 curwin->w_skipcol -= width2;
1501 else
1502 curwin->w_skipcol -= width1;
1503 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 ++done;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 }
1506 else
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001507 {
Bram Moolenaar8df97482022-10-03 12:11:13 +01001508 // scroll a text line down
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001509 --curwin->w_topline;
1510 curwin->w_skipcol = 0;
1511#ifdef FEAT_DIFF
1512 curwin->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513#endif
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001514#ifdef FEAT_FOLDING
1515 // A sequence of folded lines only counts for one logical line
1516 if (hasFolding(curwin->w_topline, &first, NULL))
1517 {
1518 ++done;
1519 if (!byfold)
1520 line_count -= curwin->w_topline - first - 1;
1521 curwin->w_botline -= curwin->w_topline - first;
1522 curwin->w_topline = first;
1523 }
1524 else
1525#endif
1526 if (curwin->w_p_wrap && curwin->w_p_sms)
1527 {
1528 int size = win_linetabsize(curwin, curwin->w_topline,
1529 ml_get(curwin->w_topline), (colnr_T)MAXCOL);
1530 if (size > width1)
1531 {
1532 curwin->w_skipcol = width1;
1533 size -= width1;
1534 redraw_later(UPD_NOT_VALID);
1535 }
1536 while (size > width2)
1537 {
1538 curwin->w_skipcol += width2;
1539 size -= width2;
1540 }
1541 ++done;
1542 }
1543 else
1544 done += PLINES_NOFILL(curwin->w_topline);
1545 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001547 --curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 invalidate_botline();
1549 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001550 curwin->w_wrow += done; // keep w_wrow updated
1551 curwin->w_cline_row += done; // keep w_cline_row updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552
1553#ifdef FEAT_DIFF
1554 if (curwin->w_cursor.lnum == curwin->w_topline)
1555 curwin->w_cline_row = 0;
1556 check_topfill(curwin, TRUE);
1557#endif
1558
1559 /*
1560 * Compute the row number of the last row of the cursor line
1561 * and move the cursor onto the displayed part of the window.
1562 */
1563 wrow = curwin->w_wrow;
Bram Moolenaar4033c552017-09-16 20:54:51 +02001564 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 {
1566 validate_virtcol();
1567 validate_cheight();
1568 wrow += curwin->w_cline_height - 1 -
Bram Moolenaar02631462017-09-22 15:20:32 +02001569 curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 }
1571 while (wrow >= curwin->w_height && curwin->w_cursor.lnum > 1)
1572 {
1573#ifdef FEAT_FOLDING
1574 if (hasFolding(curwin->w_cursor.lnum, &first, NULL))
1575 {
1576 --wrow;
1577 if (first == 1)
1578 curwin->w_cursor.lnum = 1;
1579 else
1580 curwin->w_cursor.lnum = first - 1;
1581 }
1582 else
1583#endif
1584 wrow -= plines(curwin->w_cursor.lnum--);
1585 curwin->w_valid &=
1586 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1587 moved = TRUE;
1588 }
1589 if (moved)
1590 {
1591#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01001592 // Move cursor to first line of closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 foldAdjustCursor();
1594#endif
1595 coladvance(curwin->w_curswant);
1596 }
1597}
1598
1599/*
1600 * Scroll the current window up by "line_count" logical lines. "CTRL-E"
1601 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001603scrollup(
1604 long line_count,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001605 int byfold UNUSED) // TRUE: count a closed fold as one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606{
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001607 int do_smoothscroll = curwin->w_p_wrap && curwin->w_p_sms;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001609 if (do_smoothscroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610# ifdef FEAT_FOLDING
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001611 || (byfold && hasAnyFolding(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612# endif
1613# ifdef FEAT_DIFF
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001614 || curwin->w_p_diff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615# endif
1616 )
1617 {
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001618 int width1 = curwin->w_width - curwin_col_off();
1619 int width2 = width1 + curwin_col_off2();
1620 int size = 0;
1621 linenr_T prev_topline = curwin->w_topline;
1622
1623 if (do_smoothscroll)
1624 size = win_linetabsize(curwin, curwin->w_topline,
1625 ml_get(curwin->w_topline), (colnr_T)MAXCOL);
1626
1627 // diff mode: first consume "topfill"
1628 // 'smoothscroll': increase "w_skipcol" until it goes over the end of
1629 // the line, then advance to the next line.
1630 // folding: count each sequence of folded lines as one logical line.
1631 for (int todo = line_count; todo > 0; --todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 {
1633# ifdef FEAT_DIFF
1634 if (curwin->w_topfill > 0)
1635 --curwin->w_topfill;
1636 else
1637# endif
1638 {
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001639 linenr_T lnum = curwin->w_topline;
1640
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641# ifdef FEAT_FOLDING
1642 if (byfold)
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001643 // for a closed fold: go to the last line in the fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 (void)hasFolding(lnum, NULL, &lnum);
1645# endif
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001646 if (lnum == curwin->w_topline
1647 && curwin->w_p_wrap && curwin->w_p_sms)
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001648 {
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001649 // 'smoothscroll': increase "w_skipcol" until it goes over
1650 // the end of the line, then advance to the next line.
1651 int add = curwin->w_skipcol > 0 ? width2 : width1;
1652 curwin->w_skipcol += add;
1653 if (curwin->w_skipcol >= size)
1654 {
1655 if (lnum == curbuf->b_ml.ml_line_count)
1656 {
1657 // at the last screen line, can't scroll further
1658 curwin->w_skipcol -= add;
1659 break;
1660 }
1661 ++lnum;
1662 }
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001663 }
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001664 else
1665 {
1666 if (lnum >= curbuf->b_ml.ml_line_count)
1667 break;
1668 ++lnum;
1669 }
1670
1671 if (lnum > curwin->w_topline)
1672 {
1673 // approximate w_botline
1674 curwin->w_botline += lnum - curwin->w_topline;
1675 curwin->w_topline = lnum;
1676# ifdef FEAT_DIFF
1677 curwin->w_topfill = diff_check_fill(curwin, lnum);
1678# endif
1679 curwin->w_skipcol = 0;
1680 if (todo > 1 && do_smoothscroll)
1681 size = win_linetabsize(curwin, curwin->w_topline,
1682 ml_get(curwin->w_topline), (colnr_T)MAXCOL);
1683 }
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001684 }
1685 }
Bram Moolenaar6b2d4ff2022-10-03 14:06:02 +01001686
Bram Moolenaarf6196f42022-10-02 21:29:55 +01001687 if (curwin->w_topline == prev_topline)
1688 // need to redraw even though w_topline didn't change
1689 redraw_later(UPD_NOT_VALID);
1690 }
1691 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692 {
1693 curwin->w_topline += line_count;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001694 curwin->w_botline += line_count; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 }
1696
1697 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
1698 curwin->w_topline = curbuf->b_ml.ml_line_count;
1699 if (curwin->w_botline > curbuf->b_ml.ml_line_count + 1)
1700 curwin->w_botline = curbuf->b_ml.ml_line_count + 1;
1701
1702#ifdef FEAT_DIFF
1703 check_topfill(curwin, FALSE);
1704#endif
1705
1706#ifdef FEAT_FOLDING
1707 if (hasAnyFolding(curwin))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001708 // Make sure w_topline is at the first of a sequence of folded lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1710#endif
1711
1712 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1713 if (curwin->w_cursor.lnum < curwin->w_topline)
1714 {
1715 curwin->w_cursor.lnum = curwin->w_topline;
1716 curwin->w_valid &=
1717 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1718 coladvance(curwin->w_curswant);
1719 }
1720}
1721
1722#ifdef FEAT_DIFF
1723/*
1724 * Don't end up with too many filler lines in the window.
1725 */
1726 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001727check_topfill(
1728 win_T *wp,
Bram Moolenaar85a20022019-12-21 18:25:54 +01001729 int down) // when TRUE scroll down when not enough space
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730{
1731 int n;
1732
1733 if (wp->w_topfill > 0)
1734 {
1735 n = plines_win_nofill(wp, wp->w_topline, TRUE);
1736 if (wp->w_topfill + n > wp->w_height)
1737 {
1738 if (down && wp->w_topline > 1)
1739 {
1740 --wp->w_topline;
1741 wp->w_topfill = 0;
1742 }
1743 else
1744 {
1745 wp->w_topfill = wp->w_height - n;
1746 if (wp->w_topfill < 0)
1747 wp->w_topfill = 0;
1748 }
1749 }
1750 }
1751}
1752
1753/*
1754 * Use as many filler lines as possible for w_topline. Make sure w_topline
1755 * is still visible.
1756 */
1757 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001758max_topfill(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759{
1760 int n;
1761
1762 n = plines_nofill(curwin->w_topline);
1763 if (n >= curwin->w_height)
1764 curwin->w_topfill = 0;
1765 else
1766 {
1767 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
1768 if (curwin->w_topfill + n > curwin->w_height)
1769 curwin->w_topfill = curwin->w_height - n;
1770 }
1771}
1772#endif
1773
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774/*
1775 * Scroll the screen one line down, but don't do it if it would move the
1776 * cursor off the screen.
1777 */
1778 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001779scrolldown_clamp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780{
1781 int end_row;
1782#ifdef FEAT_DIFF
1783 int can_fill = (curwin->w_topfill
1784 < diff_check_fill(curwin, curwin->w_topline));
1785#endif
1786
1787 if (curwin->w_topline <= 1
1788#ifdef FEAT_DIFF
1789 && !can_fill
1790#endif
1791 )
1792 return;
1793
Bram Moolenaar85a20022019-12-21 18:25:54 +01001794 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795
1796 /*
1797 * Compute the row number of the last row of the cursor line
1798 * and make sure it doesn't go off the screen. Make sure the cursor
1799 * doesn't go past 'scrolloff' lines from the screen end.
1800 */
1801 end_row = curwin->w_wrow;
1802#ifdef FEAT_DIFF
1803 if (can_fill)
1804 ++end_row;
1805 else
1806 end_row += plines_nofill(curwin->w_topline - 1);
1807#else
1808 end_row += plines(curwin->w_topline - 1);
1809#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001810 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 {
1812 validate_cheight();
1813 validate_virtcol();
1814 end_row += curwin->w_cline_height - 1 -
Bram Moolenaar02631462017-09-22 15:20:32 +02001815 curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 }
Bram Moolenaar375e3392019-01-31 18:26:10 +01001817 if (end_row < curwin->w_height - get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 {
1819#ifdef FEAT_DIFF
1820 if (can_fill)
1821 {
1822 ++curwin->w_topfill;
1823 check_topfill(curwin, TRUE);
1824 }
1825 else
1826 {
1827 --curwin->w_topline;
1828 curwin->w_topfill = 0;
1829 }
1830#else
1831 --curwin->w_topline;
1832#endif
1833#ifdef FEAT_FOLDING
Bram Moolenaarcde88542015-08-11 19:14:00 +02001834 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +01001836 --curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1838 }
1839}
1840
1841/*
1842 * Scroll the screen one line up, but don't do it if it would move the cursor
1843 * off the screen.
1844 */
1845 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001846scrollup_clamp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847{
1848 int start_row;
1849
1850 if (curwin->w_topline == curbuf->b_ml.ml_line_count
1851#ifdef FEAT_DIFF
1852 && curwin->w_topfill == 0
1853#endif
1854 )
1855 return;
1856
Bram Moolenaar85a20022019-12-21 18:25:54 +01001857 validate_cursor(); // w_wrow needs to be valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858
1859 /*
1860 * Compute the row number of the first row of the cursor line
1861 * and make sure it doesn't go off the screen. Make sure the cursor
1862 * doesn't go before 'scrolloff' lines from the screen start.
1863 */
1864#ifdef FEAT_DIFF
1865 start_row = curwin->w_wrow - plines_nofill(curwin->w_topline)
1866 - curwin->w_topfill;
1867#else
1868 start_row = curwin->w_wrow - plines(curwin->w_topline);
1869#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001870 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 {
1872 validate_virtcol();
Bram Moolenaar02631462017-09-22 15:20:32 +02001873 start_row -= curwin->w_virtcol / curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 }
Bram Moolenaar375e3392019-01-31 18:26:10 +01001875 if (start_row >= get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 {
1877#ifdef FEAT_DIFF
1878 if (curwin->w_topfill > 0)
1879 --curwin->w_topfill;
1880 else
1881#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001882 {
1883#ifdef FEAT_FOLDING
1884 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
1885#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 ++curwin->w_topline;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001887 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001888 ++curwin->w_botline; // approximate w_botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1890 }
1891}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892
1893/*
1894 * Add one line above "lp->lnum". This can be a filler line, a closed fold or
1895 * a (wrapped) text line. Uses and sets "lp->fill".
1896 * Returns the height of the added line in "lp->height".
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01001897 * Lines above the first one are incredibly high: MAXCOL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 */
1899 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001900topline_back(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901{
1902#ifdef FEAT_DIFF
1903 if (lp->fill < diff_check_fill(curwin, lp->lnum))
1904 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001905 // Add a filler line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 ++lp->fill;
1907 lp->height = 1;
1908 }
1909 else
1910#endif
1911 {
1912 --lp->lnum;
1913#ifdef FEAT_DIFF
1914 lp->fill = 0;
1915#endif
1916 if (lp->lnum < 1)
1917 lp->height = MAXCOL;
1918 else
1919#ifdef FEAT_FOLDING
1920 if (hasFolding(lp->lnum, &lp->lnum, NULL))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001921 // Add a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 lp->height = 1;
1923 else
1924#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02001925 lp->height = PLINES_NOFILL(lp->lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 }
1927}
1928
1929/*
1930 * Add one line below "lp->lnum". This can be a filler line, a closed fold or
1931 * a (wrapped) text line. Uses and sets "lp->fill".
1932 * Returns the height of the added line in "lp->height".
1933 * Lines below the last one are incredibly high.
1934 */
1935 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001936botline_forw(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937{
1938#ifdef FEAT_DIFF
1939 if (lp->fill < diff_check_fill(curwin, lp->lnum + 1))
1940 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001941 // Add a filler line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 ++lp->fill;
1943 lp->height = 1;
1944 }
1945 else
1946#endif
1947 {
1948 ++lp->lnum;
1949#ifdef FEAT_DIFF
1950 lp->fill = 0;
1951#endif
1952 if (lp->lnum > curbuf->b_ml.ml_line_count)
1953 lp->height = MAXCOL;
1954 else
1955#ifdef FEAT_FOLDING
1956 if (hasFolding(lp->lnum, NULL, &lp->lnum))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001957 // Add a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 lp->height = 1;
1959 else
1960#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02001961 lp->height = PLINES_NOFILL(lp->lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 }
1963}
1964
1965#ifdef FEAT_DIFF
1966/*
1967 * Switch from including filler lines below lp->lnum to including filler
1968 * lines above loff.lnum + 1. This keeps pointing to the same line.
1969 * When there are no filler lines nothing changes.
1970 */
1971 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001972botline_topline(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973{
1974 if (lp->fill > 0)
1975 {
1976 ++lp->lnum;
1977 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
1978 }
1979}
1980
1981/*
1982 * Switch from including filler lines above lp->lnum to including filler
1983 * lines below loff.lnum - 1. This keeps pointing to the same line.
1984 * When there are no filler lines nothing changes.
1985 */
1986 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001987topline_botline(lineoff_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988{
1989 if (lp->fill > 0)
1990 {
1991 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
1992 --lp->lnum;
1993 }
1994}
1995#endif
1996
1997/*
1998 * Recompute topline to put the cursor at the top of the window.
1999 * Scroll at least "min_scroll" lines.
2000 * If "always" is TRUE, always set topline (for "zt").
2001 */
2002 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002003scroll_cursor_top(int min_scroll, int always)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004{
2005 int scrolled = 0;
2006 int extra = 0;
2007 int used;
2008 int i;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002009 linenr_T top; // just above displayed lines
2010 linenr_T bot; // just below displayed lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 linenr_T old_topline = curwin->w_topline;
2012#ifdef FEAT_DIFF
2013 linenr_T old_topfill = curwin->w_topfill;
2014#endif
2015 linenr_T new_topline;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002016 int off = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 if (mouse_dragging > 0)
2019 off = mouse_dragging - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020
2021 /*
2022 * Decrease topline until:
2023 * - it has become 1
2024 * - (part of) the cursor line is moved off the screen or
2025 * - moved at least 'scrolljump' lines and
2026 * - at least 'scrolloff' lines above and below the cursor
2027 */
2028 validate_cheight();
Bram Moolenaar85a20022019-12-21 18:25:54 +01002029 used = curwin->w_cline_height; // includes filler lines above
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 if (curwin->w_cursor.lnum < curwin->w_topline)
2031 scrolled = used;
2032
2033#ifdef FEAT_FOLDING
2034 if (hasFolding(curwin->w_cursor.lnum, &top, &bot))
2035 {
2036 --top;
2037 ++bot;
2038 }
2039 else
2040#endif
2041 {
2042 top = curwin->w_cursor.lnum - 1;
2043 bot = curwin->w_cursor.lnum + 1;
2044 }
2045 new_topline = top + 1;
2046
2047#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002048 // "used" already contains the number of filler lines above, don't add it
2049 // again.
2050 // Hide filler lines above cursor line by adding them to "extra".
Bram Moolenaara09a2c52015-09-08 17:31:59 +02002051 extra += diff_check_fill(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052#endif
2053
2054 /*
2055 * Check if the lines from "top" to "bot" fit in the window. If they do,
2056 * set new_topline and advance "top" and "bot" to include more lines.
2057 */
2058 while (top > 0)
2059 {
2060#ifdef FEAT_FOLDING
2061 if (hasFolding(top, &top, NULL))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002062 // count one logical line for a sequence of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 i = 1;
2064 else
2065#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002066 i = PLINES_NOFILL(top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 used += i;
2068 if (extra + i <= off && bot < curbuf->b_ml.ml_line_count)
2069 {
2070#ifdef FEAT_FOLDING
2071 if (hasFolding(bot, NULL, &bot))
Bram Moolenaar85a20022019-12-21 18:25:54 +01002072 // count one logical line for a sequence of folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 ++used;
2074 else
2075#endif
2076 used += plines(bot);
2077 }
2078 if (used > curwin->w_height)
2079 break;
2080 if (top < curwin->w_topline)
2081 scrolled += i;
2082
2083 /*
2084 * If scrolling is needed, scroll at least 'sj' lines.
2085 */
2086 if ((new_topline >= curwin->w_topline || scrolled > min_scroll)
2087 && extra >= off)
2088 break;
2089
2090 extra += i;
2091 new_topline = top;
2092 --top;
2093 ++bot;
2094 }
2095
2096 /*
2097 * If we don't have enough space, put cursor in the middle.
2098 * This makes sure we get the same position when using "k" and "j"
2099 * in a small window.
2100 */
2101 if (used > curwin->w_height)
2102 scroll_cursor_halfway(FALSE);
2103 else
2104 {
2105 /*
2106 * If "always" is FALSE, only adjust topline to a lower value, higher
2107 * value may happen with wrapping lines
2108 */
2109 if (new_topline < curwin->w_topline || always)
2110 curwin->w_topline = new_topline;
2111 if (curwin->w_topline > curwin->w_cursor.lnum)
2112 curwin->w_topline = curwin->w_cursor.lnum;
2113#ifdef FEAT_DIFF
2114 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
2115 if (curwin->w_topfill > 0 && extra > off)
2116 {
2117 curwin->w_topfill -= extra - off;
2118 if (curwin->w_topfill < 0)
2119 curwin->w_topfill = 0;
2120 }
2121 check_topfill(curwin, FALSE);
2122#endif
2123 if (curwin->w_topline != old_topline
2124#ifdef FEAT_DIFF
2125 || curwin->w_topfill != old_topfill
2126#endif
2127 )
2128 curwin->w_valid &=
2129 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2130 curwin->w_valid |= VALID_TOPLINE;
2131 }
2132}
2133
2134/*
2135 * Set w_empty_rows and w_filler_rows for window "wp", having used up "used"
2136 * screen lines for text lines.
2137 */
2138 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002139set_empty_rows(win_T *wp, int used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140{
2141#ifdef FEAT_DIFF
2142 wp->w_filler_rows = 0;
2143#endif
2144 if (used == 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002145 wp->w_empty_rows = 0; // single line that doesn't fit
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 else
2147 {
2148 wp->w_empty_rows = wp->w_height - used;
2149#ifdef FEAT_DIFF
2150 if (wp->w_botline <= wp->w_buffer->b_ml.ml_line_count)
2151 {
2152 wp->w_filler_rows = diff_check_fill(wp, wp->w_botline);
2153 if (wp->w_empty_rows > wp->w_filler_rows)
2154 wp->w_empty_rows -= wp->w_filler_rows;
2155 else
2156 {
2157 wp->w_filler_rows = wp->w_empty_rows;
2158 wp->w_empty_rows = 0;
2159 }
2160 }
2161#endif
2162 }
2163}
2164
2165/*
2166 * Recompute topline to put the cursor at the bottom of the window.
Bram Moolenaar8088ae92022-06-20 11:38:17 +01002167 * When scrolling scroll at least "min_scroll" lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 * If "set_topbot" is TRUE, set topline and botline first (for "zb").
2169 * This is messy stuff!!!
2170 */
2171 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002172scroll_cursor_bot(int min_scroll, int set_topbot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173{
2174 int used;
2175 int scrolled = 0;
2176 int extra = 0;
2177 int i;
2178 linenr_T line_count;
2179 linenr_T old_topline = curwin->w_topline;
2180 lineoff_T loff;
2181 lineoff_T boff;
2182#ifdef FEAT_DIFF
2183 int old_topfill = curwin->w_topfill;
2184 int fill_below_window;
2185#endif
2186 linenr_T old_botline = curwin->w_botline;
2187 linenr_T old_valid = curwin->w_valid;
2188 int old_empty_rows = curwin->w_empty_rows;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002189 linenr_T cln; // Cursor Line Number
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002190 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191
2192 cln = curwin->w_cursor.lnum;
2193 if (set_topbot)
2194 {
2195 used = 0;
2196 curwin->w_botline = cln + 1;
2197#ifdef FEAT_DIFF
2198 loff.fill = 0;
2199#endif
2200 for (curwin->w_topline = curwin->w_botline;
2201 curwin->w_topline > 1;
2202 curwin->w_topline = loff.lnum)
2203 {
2204 loff.lnum = curwin->w_topline;
2205 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002206 if (loff.height == MAXCOL || used + loff.height > curwin->w_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 break;
2208 used += loff.height;
2209#ifdef FEAT_DIFF
2210 curwin->w_topfill = loff.fill;
2211#endif
2212 }
2213 set_empty_rows(curwin, used);
2214 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
2215 if (curwin->w_topline != old_topline
2216#ifdef FEAT_DIFF
2217 || curwin->w_topfill != old_topfill
2218#endif
2219 )
2220 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2221 }
2222 else
2223 validate_botline();
2224
Bram Moolenaar85a20022019-12-21 18:25:54 +01002225 // The lines of the cursor line itself are always used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226#ifdef FEAT_DIFF
2227 used = plines_nofill(cln);
2228#else
2229 validate_cheight();
2230 used = curwin->w_cline_height;
2231#endif
2232
Bram Moolenaar85a20022019-12-21 18:25:54 +01002233 // If the cursor is below botline, we will at least scroll by the height
2234 // of the cursor line. Correct for empty lines, which are really part of
2235 // botline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 if (cln >= curwin->w_botline)
2237 {
2238 scrolled = used;
2239 if (cln == curwin->w_botline)
2240 scrolled -= curwin->w_empty_rows;
2241 }
2242
2243 /*
2244 * Stop counting lines to scroll when
2245 * - hitting start of the file
2246 * - scrolled nothing or at least 'sj' lines
Bram Moolenaar375e3392019-01-31 18:26:10 +01002247 * - at least 'scrolloff' lines below the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 * - lines between botline and cursor have been counted
2249 */
2250#ifdef FEAT_FOLDING
2251 if (!hasFolding(curwin->w_cursor.lnum, &loff.lnum, &boff.lnum))
2252#endif
2253 {
2254 loff.lnum = cln;
2255 boff.lnum = cln;
2256 }
2257#ifdef FEAT_DIFF
2258 loff.fill = 0;
2259 boff.fill = 0;
2260 fill_below_window = diff_check_fill(curwin, curwin->w_botline)
2261 - curwin->w_filler_rows;
2262#endif
2263
2264 while (loff.lnum > 1)
2265 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002266 // Stop when scrolled nothing or at least "min_scroll", found "extra"
2267 // context for 'scrolloff' and counted all lines below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 if ((((scrolled <= 0 || scrolled >= min_scroll)
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002269 && extra >= (mouse_dragging > 0 ? mouse_dragging - 1 : so))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 || boff.lnum + 1 > curbuf->b_ml.ml_line_count)
2271 && loff.lnum <= curwin->w_botline
2272#ifdef FEAT_DIFF
2273 && (loff.lnum < curwin->w_botline
2274 || loff.fill >= fill_below_window)
2275#endif
2276 )
2277 break;
2278
Bram Moolenaar85a20022019-12-21 18:25:54 +01002279 // Add one line above
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002281 if (loff.height == MAXCOL)
2282 used = MAXCOL;
2283 else
2284 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 if (used > curwin->w_height)
2286 break;
2287 if (loff.lnum >= curwin->w_botline
2288#ifdef FEAT_DIFF
2289 && (loff.lnum > curwin->w_botline
2290 || loff.fill <= fill_below_window)
2291#endif
2292 )
2293 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002294 // Count screen lines that are below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 scrolled += loff.height;
2296 if (loff.lnum == curwin->w_botline
2297#ifdef FEAT_DIFF
Bram Moolenaar4e303c82018-11-24 14:27:44 +01002298 && loff.fill == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299#endif
2300 )
2301 scrolled -= curwin->w_empty_rows;
2302 }
2303
2304 if (boff.lnum < curbuf->b_ml.ml_line_count)
2305 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002306 // Add one line below
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 botline_forw(&boff);
2308 used += boff.height;
2309 if (used > curwin->w_height)
2310 break;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002311 if (extra < ( mouse_dragging > 0 ? mouse_dragging - 1 : so)
2312 || scrolled < min_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 {
2314 extra += boff.height;
2315 if (boff.lnum >= curwin->w_botline
2316#ifdef FEAT_DIFF
2317 || (boff.lnum + 1 == curwin->w_botline
2318 && boff.fill > curwin->w_filler_rows)
2319#endif
2320 )
2321 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002322 // Count screen lines that are below the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 scrolled += boff.height;
2324 if (boff.lnum == curwin->w_botline
2325#ifdef FEAT_DIFF
2326 && boff.fill == 0
2327#endif
2328 )
2329 scrolled -= curwin->w_empty_rows;
2330 }
2331 }
2332 }
2333 }
2334
Bram Moolenaar85a20022019-12-21 18:25:54 +01002335 // curwin->w_empty_rows is larger, no need to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 if (scrolled <= 0)
2337 line_count = 0;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002338 // more than a screenfull, don't scroll but redraw
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 else if (used > curwin->w_height)
2340 line_count = used;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002341 // scroll minimal number of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 else
2343 {
2344 line_count = 0;
2345#ifdef FEAT_DIFF
2346 boff.fill = curwin->w_topfill;
2347#endif
2348 boff.lnum = curwin->w_topline - 1;
2349 for (i = 0; i < scrolled && boff.lnum < curwin->w_botline; )
2350 {
2351 botline_forw(&boff);
2352 i += boff.height;
2353 ++line_count;
2354 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002355 if (i < scrolled) // below curwin->w_botline, don't scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 line_count = 9999;
2357 }
2358
2359 /*
2360 * Scroll up if the cursor is off the bottom of the screen a bit.
2361 * Otherwise put it at 1/2 of the screen.
2362 */
2363 if (line_count >= curwin->w_height && line_count > min_scroll)
2364 scroll_cursor_halfway(FALSE);
2365 else
2366 scrollup(line_count, TRUE);
2367
2368 /*
2369 * If topline didn't change we need to restore w_botline and w_empty_rows
2370 * (we changed them).
2371 * If topline did change, update_screen() will set botline.
2372 */
2373 if (curwin->w_topline == old_topline && set_topbot)
2374 {
2375 curwin->w_botline = old_botline;
2376 curwin->w_empty_rows = old_empty_rows;
2377 curwin->w_valid = old_valid;
2378 }
2379 curwin->w_valid |= VALID_TOPLINE;
2380}
2381
2382/*
2383 * Recompute topline to put the cursor halfway the window
2384 * If "atend" is TRUE, also put it halfway at the end of the file.
2385 */
2386 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002387scroll_cursor_halfway(int atend)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388{
2389 int above = 0;
2390 linenr_T topline;
2391#ifdef FEAT_DIFF
2392 int topfill = 0;
2393#endif
2394 int below = 0;
2395 int used;
2396 lineoff_T loff;
2397 lineoff_T boff;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002398#ifdef FEAT_DIFF
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002399 linenr_T old_topline = curwin->w_topline;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002400#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401
Bram Moolenaar3697c9b2020-09-26 22:03:00 +02002402#ifdef FEAT_PROP_POPUP
2403 // if the width changed this needs to be updated first
2404 may_update_popup_position();
2405#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 loff.lnum = boff.lnum = curwin->w_cursor.lnum;
2407#ifdef FEAT_FOLDING
2408 (void)hasFolding(loff.lnum, &loff.lnum, &boff.lnum);
2409#endif
2410#ifdef FEAT_DIFF
2411 used = plines_nofill(loff.lnum);
2412 loff.fill = 0;
2413 boff.fill = 0;
2414#else
2415 used = plines(loff.lnum);
2416#endif
2417 topline = loff.lnum;
2418 while (topline > 1)
2419 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002420 if (below <= above) // add a line below the cursor first
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 {
2422 if (boff.lnum < curbuf->b_ml.ml_line_count)
2423 {
2424 botline_forw(&boff);
2425 used += boff.height;
2426 if (used > curwin->w_height)
2427 break;
2428 below += boff.height;
2429 }
2430 else
2431 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002432 ++below; // count a "~" line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 if (atend)
2434 ++used;
2435 }
2436 }
2437
Bram Moolenaar85a20022019-12-21 18:25:54 +01002438 if (below > above) // add a line above the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 {
2440 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002441 if (loff.height == MAXCOL)
2442 used = MAXCOL;
2443 else
2444 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 if (used > curwin->w_height)
2446 break;
2447 above += loff.height;
2448 topline = loff.lnum;
2449#ifdef FEAT_DIFF
2450 topfill = loff.fill;
2451#endif
2452 }
2453 }
2454#ifdef FEAT_FOLDING
2455 if (!hasFolding(topline, &curwin->w_topline, NULL))
2456#endif
2457 curwin->w_topline = topline;
2458#ifdef FEAT_DIFF
2459 curwin->w_topfill = topfill;
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002460 if (old_topline > curwin->w_topline + curwin->w_height)
2461 curwin->w_botfill = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 check_topfill(curwin, FALSE);
2463#endif
2464 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2465 curwin->w_valid |= VALID_TOPLINE;
2466}
2467
2468/*
2469 * Correct the cursor position so that it is in a part of the screen at least
Bram Moolenaar375e3392019-01-31 18:26:10 +01002470 * 'scrolloff' lines from the top and bottom, if possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 * If not possible, put it at the same position as scroll_cursor_halfway().
2472 * When called topline must be valid!
2473 */
2474 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002475cursor_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476{
Bram Moolenaar85a20022019-12-21 18:25:54 +01002477 int above = 0; // screen lines above topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 linenr_T topline;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002479 int below = 0; // screen lines below botline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 linenr_T botline;
2481 int above_wanted, below_wanted;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002482 linenr_T cln; // Cursor Line Number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 int max_off;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002484 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485
2486 /*
2487 * How many lines we would like to have above/below the cursor depends on
2488 * whether the first/last line of the file is on screen.
2489 */
Bram Moolenaar375e3392019-01-31 18:26:10 +01002490 above_wanted = so;
2491 below_wanted = so;
Bram Moolenaar9964e462007-05-05 17:54:07 +00002492 if (mouse_dragging > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493 {
2494 above_wanted = mouse_dragging - 1;
2495 below_wanted = mouse_dragging - 1;
2496 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 if (curwin->w_topline == 1)
2498 {
2499 above_wanted = 0;
2500 max_off = curwin->w_height / 2;
2501 if (below_wanted > max_off)
2502 below_wanted = max_off;
2503 }
2504 validate_botline();
2505 if (curwin->w_botline == curbuf->b_ml.ml_line_count + 1
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002506 && mouse_dragging == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507 {
2508 below_wanted = 0;
2509 max_off = (curwin->w_height - 1) / 2;
2510 if (above_wanted > max_off)
2511 above_wanted = max_off;
2512 }
2513
2514 /*
2515 * If there are sufficient file-lines above and below the cursor, we can
2516 * return now.
2517 */
2518 cln = curwin->w_cursor.lnum;
2519 if (cln >= curwin->w_topline + above_wanted
2520 && cln < curwin->w_botline - below_wanted
2521#ifdef FEAT_FOLDING
2522 && !hasAnyFolding(curwin)
2523#endif
2524 )
2525 return;
2526
2527 /*
2528 * Narrow down the area where the cursor can be put by taking lines from
2529 * the top and the bottom until:
2530 * - the desired context lines are found
2531 * - the lines from the top is past the lines from the bottom
2532 */
2533 topline = curwin->w_topline;
2534 botline = curwin->w_botline - 1;
2535#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002536 // count filler lines as context
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 above = curwin->w_topfill;
2538 below = curwin->w_filler_rows;
2539#endif
2540 while ((above < above_wanted || below < below_wanted) && topline < botline)
2541 {
2542 if (below < below_wanted && (below <= above || above >= above_wanted))
2543 {
2544#ifdef FEAT_FOLDING
2545 if (hasFolding(botline, &botline, NULL))
2546 ++below;
2547 else
2548#endif
2549 below += plines(botline);
2550 --botline;
2551 }
2552 if (above < above_wanted && (above < below || below >= below_wanted))
2553 {
2554#ifdef FEAT_FOLDING
2555 if (hasFolding(topline, NULL, &topline))
2556 ++above;
2557 else
2558#endif
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002559 above += PLINES_NOFILL(topline);
2560#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002561 // Count filler lines below this line as context.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 if (topline < botline)
2563 above += diff_check_fill(curwin, topline + 1);
2564#endif
2565 ++topline;
2566 }
2567 }
2568 if (topline == botline || botline == 0)
2569 curwin->w_cursor.lnum = topline;
2570 else if (topline > botline)
2571 curwin->w_cursor.lnum = botline;
2572 else
2573 {
2574 if (cln < topline && curwin->w_topline > 1)
2575 {
2576 curwin->w_cursor.lnum = topline;
2577 curwin->w_valid &=
2578 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2579 }
2580 if (cln > botline && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2581 {
2582 curwin->w_cursor.lnum = botline;
2583 curwin->w_valid &=
2584 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2585 }
2586 }
2587 curwin->w_valid |= VALID_TOPLINE;
2588}
2589
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01002590static void get_scroll_overlap(lineoff_T *lp, int dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591
2592/*
2593 * move screen 'count' pages up or down and update screen
2594 *
2595 * return FAIL for failure, OK otherwise
2596 */
2597 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002598onepage(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599{
2600 long n;
2601 int retval = OK;
2602 lineoff_T loff;
2603 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002604 long so = get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605
Bram Moolenaar85a20022019-12-21 18:25:54 +01002606 if (curbuf->b_ml.ml_line_count == 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 {
2608 beep_flush();
2609 return FAIL;
2610 }
2611
2612 for ( ; count > 0; --count)
2613 {
2614 validate_botline();
2615 /*
2616 * It's an error to move a page up when the first line is already on
2617 * the screen. It's an error to move a page down when the last line
2618 * is on the screen and the topline is 'scrolloff' lines from the
2619 * last line.
2620 */
2621 if (dir == FORWARD
Bram Moolenaar375e3392019-01-31 18:26:10 +01002622 ? ((curwin->w_topline >= curbuf->b_ml.ml_line_count - so)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 && curwin->w_botline > curbuf->b_ml.ml_line_count)
2624 : (curwin->w_topline == 1
2625#ifdef FEAT_DIFF
2626 && curwin->w_topfill ==
2627 diff_check_fill(curwin, curwin->w_topline)
2628#endif
2629 ))
2630 {
2631 beep_flush();
2632 retval = FAIL;
2633 break;
2634 }
2635
2636#ifdef FEAT_DIFF
2637 loff.fill = 0;
2638#endif
2639 if (dir == FORWARD)
2640 {
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002641 if (ONE_WINDOW && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002643 // Vi compatible scrolling
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002644 if (p_window <= 2)
2645 ++curwin->w_topline;
2646 else
2647 curwin->w_topline += p_window - 2;
2648 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
2649 curwin->w_topline = curbuf->b_ml.ml_line_count;
2650 curwin->w_cursor.lnum = curwin->w_topline;
2651 }
2652 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2653 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002654 // at end of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 curwin->w_topline = curbuf->b_ml.ml_line_count;
2656#ifdef FEAT_DIFF
2657 curwin->w_topfill = 0;
2658#endif
2659 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2660 }
2661 else
2662 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002663 // For the overlap, start with the line just below the window
2664 // and go upwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 loff.lnum = curwin->w_botline;
2666#ifdef FEAT_DIFF
2667 loff.fill = diff_check_fill(curwin, loff.lnum)
2668 - curwin->w_filler_rows;
2669#endif
2670 get_scroll_overlap(&loff, -1);
2671 curwin->w_topline = loff.lnum;
2672#ifdef FEAT_DIFF
2673 curwin->w_topfill = loff.fill;
2674 check_topfill(curwin, FALSE);
2675#endif
2676 curwin->w_cursor.lnum = curwin->w_topline;
2677 curwin->w_valid &= ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|
2678 VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2679 }
2680 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002681 else // dir == BACKWARDS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 {
2683#ifdef FEAT_DIFF
2684 if (curwin->w_topline == 1)
2685 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002686 // Include max number of filler lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 max_topfill();
2688 continue;
2689 }
2690#endif
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002691 if (ONE_WINDOW && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002692 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002693 // Vi compatible scrolling (sort of)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002694 if (p_window <= 2)
2695 --curwin->w_topline;
2696 else
2697 curwin->w_topline -= p_window - 2;
2698 if (curwin->w_topline < 1)
2699 curwin->w_topline = 1;
2700 curwin->w_cursor.lnum = curwin->w_topline + p_window - 1;
2701 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
2702 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2703 continue;
2704 }
2705
Bram Moolenaar85a20022019-12-21 18:25:54 +01002706 // Find the line at the top of the window that is going to be the
2707 // line at the bottom of the window. Make sure this results in
2708 // the same line as before doing CTRL-F.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 loff.lnum = curwin->w_topline - 1;
2710#ifdef FEAT_DIFF
2711 loff.fill = diff_check_fill(curwin, loff.lnum + 1)
2712 - curwin->w_topfill;
2713#endif
2714 get_scroll_overlap(&loff, 1);
2715
2716 if (loff.lnum >= curbuf->b_ml.ml_line_count)
2717 {
2718 loff.lnum = curbuf->b_ml.ml_line_count;
2719#ifdef FEAT_DIFF
2720 loff.fill = 0;
2721 }
2722 else
2723 {
2724 botline_topline(&loff);
2725#endif
2726 }
2727 curwin->w_cursor.lnum = loff.lnum;
2728
Bram Moolenaar85a20022019-12-21 18:25:54 +01002729 // Find the line just above the new topline to get the right line
2730 // at the bottom of the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 n = 0;
2732 while (n <= curwin->w_height && loff.lnum >= 1)
2733 {
2734 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002735 if (loff.height == MAXCOL)
2736 n = MAXCOL;
2737 else
2738 n += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002740 if (loff.lnum < 1) // at begin of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 {
2742 curwin->w_topline = 1;
2743#ifdef FEAT_DIFF
2744 max_topfill();
2745#endif
2746 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2747 }
2748 else
2749 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002750 // Go two lines forward again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751#ifdef FEAT_DIFF
2752 topline_botline(&loff);
2753#endif
2754 botline_forw(&loff);
2755 botline_forw(&loff);
2756#ifdef FEAT_DIFF
2757 botline_topline(&loff);
2758#endif
2759#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01002760 // We're at the wrong end of a fold now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 (void)hasFolding(loff.lnum, &loff.lnum, NULL);
2762#endif
2763
Bram Moolenaar85a20022019-12-21 18:25:54 +01002764 // Always scroll at least one line. Avoid getting stuck on
2765 // very long lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 if (loff.lnum >= curwin->w_topline
2767#ifdef FEAT_DIFF
2768 && (loff.lnum > curwin->w_topline
2769 || loff.fill >= curwin->w_topfill)
2770#endif
2771 )
2772 {
2773#ifdef FEAT_DIFF
Bram Moolenaar85a20022019-12-21 18:25:54 +01002774 // First try using the maximum number of filler lines. If
2775 // that's not enough, backup one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 loff.fill = curwin->w_topfill;
2777 if (curwin->w_topfill < diff_check_fill(curwin,
2778 curwin->w_topline))
2779 max_topfill();
2780 if (curwin->w_topfill == loff.fill)
2781#endif
2782 {
2783 --curwin->w_topline;
2784#ifdef FEAT_DIFF
2785 curwin->w_topfill = 0;
2786#endif
2787 }
2788 comp_botline(curwin);
2789 curwin->w_cursor.lnum = curwin->w_botline - 1;
Bram Moolenaar3d6db142014-03-28 21:49:32 +01002790 curwin->w_valid &=
2791 ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|VALID_CROW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 }
2793 else
2794 {
2795 curwin->w_topline = loff.lnum;
2796#ifdef FEAT_DIFF
2797 curwin->w_topfill = loff.fill;
2798 check_topfill(curwin, FALSE);
2799#endif
2800 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2801 }
2802 }
2803 }
2804 }
2805#ifdef FEAT_FOLDING
2806 foldAdjustCursor();
2807#endif
2808 cursor_correct();
Bram Moolenaarbc54f3f2016-09-04 14:34:28 +02002809 check_cursor_col();
Bram Moolenaar7c626922005-02-07 22:01:03 +00002810 if (retval == OK)
2811 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 curwin->w_valid &= ~(VALID_WCOL|VALID_WROW|VALID_VIRTCOL);
2813
Bram Moolenaar907dad72018-07-10 15:07:15 +02002814 if (retval == OK && dir == FORWARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 {
Bram Moolenaar907dad72018-07-10 15:07:15 +02002816 // Avoid the screen jumping up and down when 'scrolloff' is non-zero.
2817 // But make sure we scroll at least one line (happens with mix of long
2818 // wrapping lines and non-wrapping line).
2819 if (check_top_offset())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 {
Bram Moolenaar907dad72018-07-10 15:07:15 +02002821 scroll_cursor_top(1, FALSE);
2822 if (curwin->w_topline <= old_topline
2823 && old_topline < curbuf->b_ml.ml_line_count)
2824 {
2825 curwin->w_topline = old_topline + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826#ifdef FEAT_FOLDING
Bram Moolenaar907dad72018-07-10 15:07:15 +02002827 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2828#endif
2829 }
2830 }
2831#ifdef FEAT_FOLDING
2832 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2834#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 }
2836
Bram Moolenaara4d158b2022-08-14 14:17:45 +01002837 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 return retval;
2839}
2840
2841/*
2842 * Decide how much overlap to use for page-up or page-down scrolling.
2843 * This is symmetric, so that doing both keeps the same lines displayed.
2844 * Three lines are examined:
2845 *
2846 * before CTRL-F after CTRL-F / before CTRL-B
2847 * etc. l1
2848 * l1 last but one line ------------
2849 * l2 last text line l2 top text line
2850 * ------------- l3 second text line
2851 * l3 etc.
2852 */
2853 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002854get_scroll_overlap(lineoff_T *lp, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855{
2856 int h1, h2, h3, h4;
2857 int min_height = curwin->w_height - 2;
2858 lineoff_T loff0, loff1, loff2;
2859
2860#ifdef FEAT_DIFF
2861 if (lp->fill > 0)
2862 lp->height = 1;
2863 else
2864 lp->height = plines_nofill(lp->lnum);
2865#else
2866 lp->height = plines(lp->lnum);
2867#endif
2868 h1 = lp->height;
2869 if (h1 > min_height)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002870 return; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871
2872 loff0 = *lp;
2873 if (dir > 0)
2874 botline_forw(lp);
2875 else
2876 topline_back(lp);
2877 h2 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002878 if (h2 == MAXCOL || h2 + h1 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002880 *lp = loff0; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 return;
2882 }
2883
2884 loff1 = *lp;
2885 if (dir > 0)
2886 botline_forw(lp);
2887 else
2888 topline_back(lp);
2889 h3 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002890 if (h3 == MAXCOL || h3 + h2 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002892 *lp = loff0; // no overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893 return;
2894 }
2895
2896 loff2 = *lp;
2897 if (dir > 0)
2898 botline_forw(lp);
2899 else
2900 topline_back(lp);
2901 h4 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002902 if (h4 == MAXCOL || h4 + h3 + h2 > min_height || h3 + h2 + h1 > min_height)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002903 *lp = loff1; // 1 line overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 else
Bram Moolenaar85a20022019-12-21 18:25:54 +01002905 *lp = loff2; // 2 lines overlap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906}
2907
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908/*
2909 * Scroll 'scroll' lines up or down.
2910 */
2911 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002912halfpage(int flag, linenr_T Prenum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913{
2914 long scrolled = 0;
2915 int i;
2916 int n;
2917 int room;
2918
2919 if (Prenum)
2920 curwin->w_p_scr = (Prenum > curwin->w_height) ?
2921 curwin->w_height : Prenum;
2922 n = (curwin->w_p_scr <= curwin->w_height) ?
2923 curwin->w_p_scr : curwin->w_height;
2924
Bram Moolenaard5d37532017-03-27 23:02:07 +02002925 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 validate_botline();
2927 room = curwin->w_empty_rows;
2928#ifdef FEAT_DIFF
2929 room += curwin->w_filler_rows;
2930#endif
2931 if (flag)
2932 {
2933 /*
2934 * scroll the text up
2935 */
2936 while (n > 0 && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2937 {
2938#ifdef FEAT_DIFF
2939 if (curwin->w_topfill > 0)
2940 {
2941 i = 1;
Bram Moolenaar8455c5e2020-07-14 21:22:30 +02002942 --n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943 --curwin->w_topfill;
2944 }
2945 else
2946#endif
2947 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02002948 i = PLINES_NOFILL(curwin->w_topline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 n -= i;
2950 if (n < 0 && scrolled > 0)
2951 break;
2952#ifdef FEAT_FOLDING
2953 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
2954#endif
2955 ++curwin->w_topline;
2956#ifdef FEAT_DIFF
2957 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
2958#endif
2959
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
2961 {
2962 ++curwin->w_cursor.lnum;
2963 curwin->w_valid &=
2964 ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
2965 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 }
2967 curwin->w_valid &= ~(VALID_CROW|VALID_WROW);
2968 scrolled += i;
2969
2970 /*
2971 * Correct w_botline for changed w_topline.
2972 * Won't work when there are filler lines.
2973 */
2974#ifdef FEAT_DIFF
2975 if (curwin->w_p_diff)
2976 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
2977 else
2978#endif
2979 {
2980 room += i;
2981 do
2982 {
2983 i = plines(curwin->w_botline);
2984 if (i > room)
2985 break;
2986#ifdef FEAT_FOLDING
2987 (void)hasFolding(curwin->w_botline, NULL,
2988 &curwin->w_botline);
2989#endif
2990 ++curwin->w_botline;
2991 room -= i;
2992 } while (curwin->w_botline <= curbuf->b_ml.ml_line_count);
2993 }
2994 }
2995
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 /*
2997 * When hit bottom of the file: move cursor down.
2998 */
2999 if (n > 0)
3000 {
3001# ifdef FEAT_FOLDING
3002 if (hasAnyFolding(curwin))
3003 {
3004 while (--n >= 0
3005 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3006 {
3007 (void)hasFolding(curwin->w_cursor.lnum, NULL,
3008 &curwin->w_cursor.lnum);
3009 ++curwin->w_cursor.lnum;
3010 }
3011 }
3012 else
3013# endif
3014 curwin->w_cursor.lnum += n;
3015 check_cursor_lnum();
3016 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 }
3018 else
3019 {
3020 /*
3021 * scroll the text down
3022 */
3023 while (n > 0 && curwin->w_topline > 1)
3024 {
3025#ifdef FEAT_DIFF
3026 if (curwin->w_topfill < diff_check_fill(curwin, curwin->w_topline))
3027 {
3028 i = 1;
Bram Moolenaard00e0242019-03-20 21:42:20 +01003029 --n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030 ++curwin->w_topfill;
3031 }
3032 else
3033#endif
3034 {
Bram Moolenaar43335ea2015-09-09 20:59:37 +02003035 i = PLINES_NOFILL(curwin->w_topline - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036 n -= i;
3037 if (n < 0 && scrolled > 0)
3038 break;
3039 --curwin->w_topline;
3040#ifdef FEAT_FOLDING
3041 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
3042#endif
3043#ifdef FEAT_DIFF
3044 curwin->w_topfill = 0;
3045#endif
3046 }
3047 curwin->w_valid &= ~(VALID_CROW|VALID_WROW|
3048 VALID_BOTLINE|VALID_BOTLINE_AP);
3049 scrolled += i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 if (curwin->w_cursor.lnum > 1)
3051 {
3052 --curwin->w_cursor.lnum;
3053 curwin->w_valid &= ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
3054 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 }
Bram Moolenaard00e0242019-03-20 21:42:20 +01003056
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 /*
3058 * When hit top of the file: move cursor up.
3059 */
3060 if (n > 0)
3061 {
3062 if (curwin->w_cursor.lnum <= (linenr_T)n)
3063 curwin->w_cursor.lnum = 1;
3064 else
3065# ifdef FEAT_FOLDING
3066 if (hasAnyFolding(curwin))
3067 {
3068 while (--n >= 0 && curwin->w_cursor.lnum > 1)
3069 {
3070 --curwin->w_cursor.lnum;
3071 (void)hasFolding(curwin->w_cursor.lnum,
3072 &curwin->w_cursor.lnum, NULL);
3073 }
3074 }
3075 else
3076# endif
3077 curwin->w_cursor.lnum -= n;
3078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 }
3080# ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +01003081 // Move cursor to first line of closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 foldAdjustCursor();
3083# endif
3084#ifdef FEAT_DIFF
3085 check_topfill(curwin, !flag);
3086#endif
3087 cursor_correct();
3088 beginline(BL_SOL | BL_FIX);
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003089 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090}
Bram Moolenaar860cae12010-06-05 23:22:07 +02003091
Bram Moolenaar860cae12010-06-05 23:22:07 +02003092 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003093do_check_cursorbind(void)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003094{
3095 linenr_T line = curwin->w_cursor.lnum;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003096 colnr_T col = curwin->w_cursor.col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003097 colnr_T coladd = curwin->w_cursor.coladd;
Bram Moolenaar524780d2012-03-28 14:19:50 +02003098 colnr_T curswant = curwin->w_curswant;
3099 int set_curswant = curwin->w_set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003100 win_T *old_curwin = curwin;
3101 buf_T *old_curbuf = curbuf;
Bram Moolenaar61452852011-02-01 18:01:11 +01003102 int restart_edit_save;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003103 int old_VIsual_select = VIsual_select;
3104 int old_VIsual_active = VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003105
3106 /*
3107 * loop through the cursorbound windows
3108 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003109 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02003110 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003111 {
3112 curbuf = curwin->w_buffer;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003113 // skip original window and windows with 'noscrollbind'
Bram Moolenaar860cae12010-06-05 23:22:07 +02003114 if (curwin != old_curwin && curwin->w_p_crb)
3115 {
3116# ifdef FEAT_DIFF
3117 if (curwin->w_p_diff)
Bram Moolenaar025e3e02016-10-18 14:50:18 +02003118 curwin->w_cursor.lnum =
3119 diff_get_corresponding_line(old_curbuf, line);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003120 else
3121# endif
3122 curwin->w_cursor.lnum = line;
3123 curwin->w_cursor.col = col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01003124 curwin->w_cursor.coladd = coladd;
Bram Moolenaar524780d2012-03-28 14:19:50 +02003125 curwin->w_curswant = curswant;
3126 curwin->w_set_curswant = set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003127
Bram Moolenaar85a20022019-12-21 18:25:54 +01003128 // Make sure the cursor is in a valid position. Temporarily set
3129 // "restart_edit" to allow the cursor to be beyond the EOL.
Bram Moolenaar61452852011-02-01 18:01:11 +01003130 restart_edit_save = restart_edit;
3131 restart_edit = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003132 check_cursor();
Bram Moolenaara315ce12022-06-24 12:38:57 +01003133
3134 // Avoid a scroll here for the cursor position, 'scrollbind' is
3135 // more important.
3136 if (!curwin->w_p_scb)
3137 validate_cursor();
3138
Bram Moolenaar61452852011-02-01 18:01:11 +01003139 restart_edit = restart_edit_save;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003140 // Correct cursor for multi-byte character.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003141 if (has_mbyte)
3142 mb_adjust_cursor();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003143 redraw_later(UPD_VALID);
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01003144
Bram Moolenaar85a20022019-12-21 18:25:54 +01003145 // Only scroll when 'scrollbind' hasn't done this.
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01003146 if (!curwin->w_p_scb)
3147 update_topline();
Bram Moolenaar860cae12010-06-05 23:22:07 +02003148 curwin->w_redr_status = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003149 }
3150 }
3151
3152 /*
3153 * reset current-window
3154 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003155 VIsual_select = old_VIsual_select;
3156 VIsual_active = old_VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003157 curwin = old_curwin;
3158 curbuf = old_curbuf;
3159}