blob: fff0c9c07f596e850ea68ac18baa0238fc16bd90 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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
22static void comp_botline __ARGS((win_T *wp));
Bram Moolenaar1e015462005-09-25 22:16:38 +000023static int scrolljump_value __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000024static int check_top_offset __ARGS((void));
25static void curs_rows __ARGS((win_T *wp, int do_botline));
26static void validate_botline_win __ARGS((win_T *wp));
27static void validate_cheight __ARGS((void));
28
29typedef struct
30{
31 linenr_T lnum; /* line number */
32#ifdef FEAT_DIFF
33 int fill; /* filler lines */
34#endif
35 int height; /* height of added line */
36} lineoff_T;
37
38static void topline_back __ARGS((lineoff_T *lp));
39static void botline_forw __ARGS((lineoff_T *lp));
40#ifdef FEAT_DIFF
41static void botline_topline __ARGS((lineoff_T *lp));
42static void topline_botline __ARGS((lineoff_T *lp));
43static void max_topfill __ARGS((void));
44#endif
45
46/*
47 * Compute wp->w_botline for the current wp->w_topline. Can be called after
48 * wp->w_topline changed.
49 */
50 static void
51comp_botline(wp)
52 win_T *wp;
53{
54 int n;
55 linenr_T lnum;
56 int done;
57#ifdef FEAT_FOLDING
58 linenr_T last;
59 int folded;
60#endif
61
62 /*
63 * If w_cline_row is valid, start there.
64 * Otherwise have to start at w_topline.
65 */
66 check_cursor_moved(wp);
67 if (wp->w_valid & VALID_CROW)
68 {
69 lnum = wp->w_cursor.lnum;
70 done = wp->w_cline_row;
71 }
72 else
73 {
74 lnum = wp->w_topline;
75 done = 0;
76 }
77
78 for ( ; lnum <= wp->w_buffer->b_ml.ml_line_count; ++lnum)
79 {
80#ifdef FEAT_FOLDING
81 last = lnum;
82 folded = FALSE;
83 if (hasFoldingWin(wp, lnum, NULL, &last, TRUE, NULL))
84 {
85 n = 1;
86 folded = TRUE;
87 }
88 else
89#endif
90#ifdef FEAT_DIFF
91 if (lnum == wp->w_topline)
92 n = plines_win_nofill(wp, lnum, TRUE) + wp->w_topfill;
93 else
94#endif
95 n = plines_win(wp, lnum, TRUE);
96 if (
97#ifdef FEAT_FOLDING
98 lnum <= wp->w_cursor.lnum && last >= wp->w_cursor.lnum
99#else
100 lnum == wp->w_cursor.lnum
101#endif
102 )
103 {
104 wp->w_cline_row = done;
105 wp->w_cline_height = n;
106#ifdef FEAT_FOLDING
107 wp->w_cline_folded = folded;
108#endif
109 wp->w_valid |= (VALID_CROW|VALID_CHEIGHT);
110 }
111 if (done + n > wp->w_height)
112 break;
113 done += n;
114#ifdef FEAT_FOLDING
115 lnum = last;
116#endif
117 }
118
119 /* wp->w_botline is the line that is just below the window */
120 wp->w_botline = lnum;
121 wp->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
122
123 set_empty_rows(wp, done);
124}
125
126/*
127 * Update curwin->w_topline and redraw if necessary.
128 * Used to update the screen before printing a message.
129 */
130 void
131update_topline_redraw()
132{
133 update_topline();
134 if (must_redraw)
135 update_screen(0);
136}
137
138/*
139 * Update curwin->w_topline to move the cursor onto the screen.
140 */
141 void
142update_topline()
143{
144 long line_count;
145 int halfheight;
146 int n;
147 linenr_T old_topline;
148#ifdef FEAT_DIFF
149 int old_topfill;
150#endif
151#ifdef FEAT_FOLDING
152 linenr_T lnum;
153#endif
154 int check_topline = FALSE;
155 int check_botline = FALSE;
156#ifdef FEAT_MOUSE
157 int save_so = p_so;
158#endif
159
160 if (!screen_valid(TRUE))
161 return;
162
163 check_cursor_moved(curwin);
164 if (curwin->w_valid & VALID_TOPLINE)
165 return;
166
167#ifdef FEAT_MOUSE
168 /* When dragging with the mouse, don't scroll that quickly */
Bram Moolenaar9964e462007-05-05 17:54:07 +0000169 if (mouse_dragging > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170 p_so = mouse_dragging - 1;
171#endif
172
173 old_topline = curwin->w_topline;
174#ifdef FEAT_DIFF
175 old_topfill = curwin->w_topfill;
176#endif
177
178 /*
179 * If the buffer is empty, always set topline to 1.
180 */
181 if (bufempty()) /* special case - file is empty */
182 {
183 if (curwin->w_topline != 1)
184 redraw_later(NOT_VALID);
185 curwin->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 curwin->w_botline = 2;
187 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
188#ifdef FEAT_SCROLLBIND
189 curwin->w_scbind_pos = 1;
190#endif
191 }
192
193 /*
194 * If the cursor is above or near the top of the window, scroll the window
195 * to show the line the cursor is in, with 'scrolloff' context.
196 */
197 else
198 {
199 if (curwin->w_topline > 1)
200 {
201 /* If the cursor is above topline, scrolling is always needed.
202 * If the cursor is far below topline and there is no folding,
203 * scrolling down is never needed. */
204 if (curwin->w_cursor.lnum < curwin->w_topline)
205 check_topline = TRUE;
206 else if (check_top_offset())
207 check_topline = TRUE;
208 }
209#ifdef FEAT_DIFF
210 /* Check if there are more filler lines than allowed. */
211 if (!check_topline && curwin->w_topfill > diff_check_fill(curwin,
212 curwin->w_topline))
213 check_topline = TRUE;
214#endif
215
216 if (check_topline)
217 {
218 halfheight = curwin->w_height / 2 - 1;
219 if (halfheight < 2)
220 halfheight = 2;
221
222#ifdef FEAT_FOLDING
223 if (hasAnyFolding(curwin))
224 {
225 /* Count the number of logical lines between the cursor and
226 * topline + p_so (approximation of how much will be
227 * scrolled). */
228 n = 0;
229 for (lnum = curwin->w_cursor.lnum;
230 lnum < curwin->w_topline + p_so; ++lnum)
231 {
232 ++n;
233 /* stop at end of file or when we know we are far off */
234 if (lnum >= curbuf->b_ml.ml_line_count || n >= halfheight)
235 break;
236 (void)hasFolding(lnum, NULL, &lnum);
237 }
238 }
239 else
240#endif
241 n = curwin->w_topline + p_so - curwin->w_cursor.lnum;
242
243 /* If we weren't very close to begin with, we scroll to put the
244 * cursor in the middle of the window. Otherwise put the cursor
245 * near the top of the window. */
246 if (n >= halfheight)
247 scroll_cursor_halfway(FALSE);
248 else
249 {
Bram Moolenaar1e015462005-09-25 22:16:38 +0000250 scroll_cursor_top(scrolljump_value(), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251 check_botline = TRUE;
252 }
253 }
254
255 else
256 {
257#ifdef FEAT_FOLDING
258 /* Make sure topline is the first line of a fold. */
259 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
260#endif
261 check_botline = TRUE;
262 }
263 }
264
265 /*
266 * If the cursor is below the bottom of the window, scroll the window
267 * to put the cursor on the window.
268 * When w_botline is invalid, recompute it first, to avoid a redraw later.
269 * If w_botline was approximated, we might need a redraw later in a few
270 * cases, but we don't want to spend (a lot of) time recomputing w_botline
271 * for every small change.
272 */
273 if (check_botline)
274 {
275 if (!(curwin->w_valid & VALID_BOTLINE_AP))
276 validate_botline();
277
278 if (curwin->w_botline <= curbuf->b_ml.ml_line_count)
279 {
Bram Moolenaard4153d42008-11-15 15:06:17 +0000280 if (curwin->w_cursor.lnum < curwin->w_botline)
281 {
282 if (((long)curwin->w_cursor.lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 >= (long)curwin->w_botline - p_so
284#ifdef FEAT_FOLDING
285 || hasAnyFolding(curwin)
286#endif
287 ))
Bram Moolenaard4153d42008-11-15 15:06:17 +0000288 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 lineoff_T loff;
290
Bram Moolenaard4153d42008-11-15 15:06:17 +0000291 /* Cursor is (a few lines) above botline, check if there are
292 * 'scrolloff' window lines below the cursor. If not, need to
293 * scroll. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 n = curwin->w_empty_rows;
295 loff.lnum = curwin->w_cursor.lnum;
296#ifdef FEAT_FOLDING
297 /* In a fold go to its last line. */
298 (void)hasFolding(loff.lnum, NULL, &loff.lnum);
299#endif
300#ifdef FEAT_DIFF
301 loff.fill = 0;
302 n += curwin->w_filler_rows;
303#endif
304 loff.height = 0;
305 while (loff.lnum < curwin->w_botline
306#ifdef FEAT_DIFF
307 && (loff.lnum + 1 < curwin->w_botline || loff.fill == 0)
308#endif
309 )
310 {
311 n += loff.height;
312 if (n >= p_so)
313 break;
314 botline_forw(&loff);
315 }
316 if (n >= p_so)
317 /* sufficient context, no need to scroll */
318 check_botline = FALSE;
Bram Moolenaard4153d42008-11-15 15:06:17 +0000319 }
320 else
321 /* sufficient context, no need to scroll */
322 check_botline = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 }
324 if (check_botline)
325 {
326#ifdef FEAT_FOLDING
327 if (hasAnyFolding(curwin))
328 {
329 /* Count the number of logical lines between the cursor and
330 * botline - p_so (approximation of how much will be
331 * scrolled). */
332 line_count = 0;
333 for (lnum = curwin->w_cursor.lnum;
334 lnum >= curwin->w_botline - p_so; --lnum)
335 {
336 ++line_count;
337 /* stop at end of file or when we know we are far off */
338 if (lnum <= 0 || line_count > curwin->w_height + 1)
339 break;
340 (void)hasFolding(lnum, &lnum, NULL);
341 }
342 }
343 else
344#endif
345 line_count = curwin->w_cursor.lnum - curwin->w_botline
346 + 1 + p_so;
347 if (line_count <= curwin->w_height + 1)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000348 scroll_cursor_bot(scrolljump_value(), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 else
350 scroll_cursor_halfway(FALSE);
351 }
352 }
353 }
354 curwin->w_valid |= VALID_TOPLINE;
355
356 /*
357 * Need to redraw when topline changed.
358 */
359 if (curwin->w_topline != old_topline
360#ifdef FEAT_DIFF
361 || curwin->w_topfill != old_topfill
362#endif
363 )
364 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +0100365 dollar_vcol = -1;
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000366 if (curwin->w_skipcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 {
368 curwin->w_skipcol = 0;
369 redraw_later(NOT_VALID);
370 }
371 else
372 redraw_later(VALID);
373 /* May need to set w_skipcol when cursor in w_topline. */
374 if (curwin->w_cursor.lnum == curwin->w_topline)
375 validate_cursor();
376 }
377
378#ifdef FEAT_MOUSE
379 p_so = save_so;
380#endif
381}
382
383/*
Bram Moolenaar1e015462005-09-25 22:16:38 +0000384 * Return the scrolljump value to use for the current window.
385 * When 'scrolljump' is positive use it as-is.
386 * When 'scrolljump' is negative use it as a percentage of the window height.
387 */
388 static int
389scrolljump_value()
390{
391 if (p_sj >= 0)
392 return (int)p_sj;
393 return (curwin->w_height * -p_sj) / 100;
394}
395
396/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397 * Return TRUE when there are not 'scrolloff' lines above the cursor for the
398 * current window.
399 */
400 static int
401check_top_offset()
402{
403 lineoff_T loff;
404 int n;
405
406 if (curwin->w_cursor.lnum < curwin->w_topline + p_so
407#ifdef FEAT_FOLDING
408 || hasAnyFolding(curwin)
409#endif
410 )
411 {
412 loff.lnum = curwin->w_cursor.lnum;
413#ifdef FEAT_DIFF
414 loff.fill = 0;
415 n = curwin->w_topfill; /* always have this context */
416#else
417 n = 0;
418#endif
419 /* Count the visible screen lines above the cursor line. */
420 while (n < p_so)
421 {
422 topline_back(&loff);
423 /* Stop when included a line above the window. */
424 if (loff.lnum < curwin->w_topline
425#ifdef FEAT_DIFF
426 || (loff.lnum == curwin->w_topline && loff.fill > 0)
427#endif
428 )
429 break;
430 n += loff.height;
431 }
432 if (n < p_so)
433 return TRUE;
434 }
435 return FALSE;
436}
437
438 void
439update_curswant()
440{
441 if (curwin->w_set_curswant)
442 {
443 validate_virtcol();
444 curwin->w_curswant = curwin->w_virtcol;
445 curwin->w_set_curswant = FALSE;
446 }
447}
448
449/*
450 * Check if the cursor has moved. Set the w_valid flag accordingly.
451 */
452 void
453check_cursor_moved(wp)
454 win_T *wp;
455{
456 if (wp->w_cursor.lnum != wp->w_valid_cursor.lnum)
457 {
458 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
459 |VALID_CHEIGHT|VALID_CROW|VALID_TOPLINE);
460 wp->w_valid_cursor = wp->w_cursor;
461 wp->w_valid_leftcol = wp->w_leftcol;
462 }
463 else if (wp->w_cursor.col != wp->w_valid_cursor.col
464 || wp->w_leftcol != wp->w_valid_leftcol
465#ifdef FEAT_VIRTUALEDIT
466 || wp->w_cursor.coladd != wp->w_valid_cursor.coladd
467#endif
468 )
469 {
470 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL);
471 wp->w_valid_cursor.col = wp->w_cursor.col;
472 wp->w_valid_leftcol = wp->w_leftcol;
473#ifdef FEAT_VIRTUALEDIT
474 wp->w_valid_cursor.coladd = wp->w_cursor.coladd;
475#endif
476 }
477}
478
479/*
480 * Call this function when some window settings have changed, which require
481 * the cursor position, botline and topline to be recomputed and the window to
482 * be redrawn. E.g, when changing the 'wrap' option or folding.
483 */
484 void
485changed_window_setting()
486{
487 changed_window_setting_win(curwin);
488}
489
490 void
491changed_window_setting_win(wp)
492 win_T *wp;
493{
494 wp->w_lines_valid = 0;
495 changed_line_abv_curs_win(wp);
496 wp->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP|VALID_TOPLINE);
497 redraw_win_later(wp, NOT_VALID);
498}
499
500/*
501 * Set wp->w_topline to a certain number.
502 */
503 void
504set_topline(wp, lnum)
505 win_T *wp;
506 linenr_T lnum;
507{
508#ifdef FEAT_FOLDING
509 /* go to first of folded lines */
510 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
511#endif
512 /* Approximate the value of w_botline */
513 wp->w_botline += lnum - wp->w_topline;
514 wp->w_topline = lnum;
Bram Moolenaard4153d42008-11-15 15:06:17 +0000515#ifdef FEAT_AUTOCMD
516 wp->w_topline_was_set = TRUE;
517#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518#ifdef FEAT_DIFF
519 wp->w_topfill = 0;
520#endif
521 wp->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_TOPLINE);
522 /* Don't set VALID_TOPLINE here, 'scrolloff' needs to be checked. */
523 redraw_later(VALID);
524}
525
526/*
527 * Call this function when the length of the cursor line (in screen
528 * characters) has changed, and the change is before the cursor.
529 * Need to take care of w_botline separately!
530 */
531 void
532changed_cline_bef_curs()
533{
534 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
535 |VALID_CHEIGHT|VALID_TOPLINE);
536}
537
538 void
539changed_cline_bef_curs_win(wp)
540 win_T *wp;
541{
542 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL
543 |VALID_CHEIGHT|VALID_TOPLINE);
544}
545
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546/*
547 * Call this function when the length of a line (in screen characters) above
548 * the cursor have changed.
549 * Need to take care of w_botline separately!
550 */
551 void
552changed_line_abv_curs()
553{
554 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL|VALID_CROW
555 |VALID_CHEIGHT|VALID_TOPLINE);
556}
557
558 void
559changed_line_abv_curs_win(wp)
560 win_T *wp;
561{
562 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL|VALID_CROW
563 |VALID_CHEIGHT|VALID_TOPLINE);
564}
565
566/*
567 * Make sure the value of curwin->w_botline is valid.
568 */
569 void
570validate_botline()
571{
572 if (!(curwin->w_valid & VALID_BOTLINE))
573 comp_botline(curwin);
574}
575
576/*
577 * Make sure the value of wp->w_botline is valid.
578 */
579 static void
580validate_botline_win(wp)
581 win_T *wp;
582{
583 if (!(wp->w_valid & VALID_BOTLINE))
584 comp_botline(wp);
585}
586
587/*
588 * Mark curwin->w_botline as invalid (because of some change in the buffer).
589 */
590 void
591invalidate_botline()
592{
593 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
594}
595
596 void
597invalidate_botline_win(wp)
598 win_T *wp;
599{
600 wp->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
601}
602
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603 void
604approximate_botline_win(wp)
605 win_T *wp;
606{
607 wp->w_valid &= ~VALID_BOTLINE;
608}
609
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610/*
611 * Return TRUE if curwin->w_wrow and curwin->w_wcol are valid.
612 */
613 int
614cursor_valid()
615{
616 check_cursor_moved(curwin);
617 return ((curwin->w_valid & (VALID_WROW|VALID_WCOL)) ==
618 (VALID_WROW|VALID_WCOL));
619}
620
621/*
622 * Validate cursor position. Makes sure w_wrow and w_wcol are valid.
623 * w_topline must be valid, you may need to call update_topline() first!
624 */
625 void
626validate_cursor()
627{
628 check_cursor_moved(curwin);
629 if ((curwin->w_valid & (VALID_WCOL|VALID_WROW)) != (VALID_WCOL|VALID_WROW))
630 curs_columns(TRUE);
631}
632
633#if defined(FEAT_GUI) || defined(PROTO)
634/*
635 * validate w_cline_row.
636 */
637 void
638validate_cline_row()
639{
640 /*
641 * First make sure that w_topline is valid (after moving the cursor).
642 */
643 update_topline();
644 check_cursor_moved(curwin);
645 if (!(curwin->w_valid & VALID_CROW))
646 curs_rows(curwin, FALSE);
647}
648#endif
649
650/*
651 * Compute wp->w_cline_row and wp->w_cline_height, based on the current value
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200652 * of wp->w_topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 *
654 * Returns OK when cursor is in the window, FAIL when it isn't.
655 */
656 static void
657curs_rows(wp, do_botline)
658 win_T *wp;
659 int do_botline; /* also compute w_botline */
660{
661 linenr_T lnum;
662 int i;
663 int all_invalid;
664 int valid;
665#ifdef FEAT_FOLDING
666 long fold_count;
667#endif
668
669 /* Check if wp->w_lines[].wl_size is invalid */
670 all_invalid = (!redrawing()
671 || wp->w_lines_valid == 0
672 || wp->w_lines[0].wl_lnum > wp->w_topline);
673 i = 0;
674 wp->w_cline_row = 0;
675 for (lnum = wp->w_topline; lnum < wp->w_cursor.lnum; ++i)
676 {
677 valid = FALSE;
678 if (!all_invalid && i < wp->w_lines_valid)
679 {
680 if (wp->w_lines[i].wl_lnum < lnum || !wp->w_lines[i].wl_valid)
681 continue; /* skip changed or deleted lines */
682 if (wp->w_lines[i].wl_lnum == lnum)
683 {
684#ifdef FEAT_FOLDING
685 /* Check for newly inserted lines below this row, in which
686 * case we need to check for folded lines. */
687 if (!wp->w_buffer->b_mod_set
688 || wp->w_lines[i].wl_lastlnum < wp->w_cursor.lnum
689 || wp->w_buffer->b_mod_top
690 > wp->w_lines[i].wl_lastlnum + 1)
691#endif
692 valid = TRUE;
693 }
694 else if (wp->w_lines[i].wl_lnum > lnum)
695 --i; /* hold at inserted lines */
696 }
697 if (valid
698#ifdef FEAT_DIFF
699 && (lnum != wp->w_topline || !wp->w_p_diff)
700#endif
701 )
702 {
703#ifdef FEAT_FOLDING
704 lnum = wp->w_lines[i].wl_lastlnum + 1;
705 /* Cursor inside folded lines, don't count this row */
706 if (lnum > wp->w_cursor.lnum)
707 break;
708#else
709 ++lnum;
710#endif
711 wp->w_cline_row += wp->w_lines[i].wl_size;
712 }
713 else
714 {
715#ifdef FEAT_FOLDING
716 fold_count = foldedCount(wp, lnum, NULL);
717 if (fold_count)
718 {
719 lnum += fold_count;
720 if (lnum > wp->w_cursor.lnum)
721 break;
722 ++wp->w_cline_row;
723 }
724 else
725#endif
726#ifdef FEAT_DIFF
727 if (lnum == wp->w_topline)
728 wp->w_cline_row += plines_win_nofill(wp, lnum++, TRUE)
729 + wp->w_topfill;
730 else
731#endif
732 wp->w_cline_row += plines_win(wp, lnum++, TRUE);
733 }
734 }
735
736 check_cursor_moved(wp);
737 if (!(wp->w_valid & VALID_CHEIGHT))
738 {
739 if (all_invalid
740 || i == wp->w_lines_valid
741 || (i < wp->w_lines_valid
742 && (!wp->w_lines[i].wl_valid
743 || wp->w_lines[i].wl_lnum != wp->w_cursor.lnum)))
744 {
745#ifdef FEAT_DIFF
746 if (wp->w_cursor.lnum == wp->w_topline)
747 wp->w_cline_height = plines_win_nofill(wp, wp->w_cursor.lnum,
748 TRUE) + wp->w_topfill;
749 else
750#endif
751 wp->w_cline_height = plines_win(wp, wp->w_cursor.lnum, TRUE);
752#ifdef FEAT_FOLDING
753 wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
754 NULL, NULL, TRUE, NULL);
755#endif
756 }
757 else if (i > wp->w_lines_valid)
758 {
759 /* a line that is too long to fit on the last screen line */
760 wp->w_cline_height = 0;
761#ifdef FEAT_FOLDING
762 wp->w_cline_folded = hasFoldingWin(wp, wp->w_cursor.lnum,
763 NULL, NULL, TRUE, NULL);
764#endif
765 }
766 else
767 {
768 wp->w_cline_height = wp->w_lines[i].wl_size;
769#ifdef FEAT_FOLDING
770 wp->w_cline_folded = wp->w_lines[i].wl_folded;
771#endif
772 }
773 }
774
775 wp->w_valid |= VALID_CROW|VALID_CHEIGHT;
776
777 /* validate botline too, if update_screen doesn't do it */
778 if (do_botline && all_invalid)
779 validate_botline_win(wp);
780}
781
782/*
783 * Validate curwin->w_virtcol only.
784 */
785 void
786validate_virtcol()
787{
788 validate_virtcol_win(curwin);
789}
790
791/*
792 * Validate wp->w_virtcol only.
793 */
794 void
795validate_virtcol_win(wp)
796 win_T *wp;
797{
798 check_cursor_moved(wp);
799 if (!(wp->w_valid & VALID_VIRTCOL))
800 {
801 getvvcol(wp, &wp->w_cursor, NULL, &(wp->w_virtcol), NULL);
802 wp->w_valid |= VALID_VIRTCOL;
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000803#ifdef FEAT_SYN_HL
Bram Moolenaar019ff682006-03-13 22:10:45 +0000804 if (wp->w_p_cuc
805# ifdef FEAT_INS_EXPAND
806 && !pum_visible()
807# endif
808 )
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000809 redraw_win_later(wp, SOME_VALID);
810#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 }
812}
813
814/*
815 * Validate curwin->w_cline_height only.
816 */
817 static void
818validate_cheight()
819{
820 check_cursor_moved(curwin);
821 if (!(curwin->w_valid & VALID_CHEIGHT))
822 {
823#ifdef FEAT_DIFF
824 if (curwin->w_cursor.lnum == curwin->w_topline)
825 curwin->w_cline_height = plines_nofill(curwin->w_cursor.lnum)
826 + curwin->w_topfill;
827 else
828#endif
829 curwin->w_cline_height = plines(curwin->w_cursor.lnum);
830#ifdef FEAT_FOLDING
831 curwin->w_cline_folded = hasFolding(curwin->w_cursor.lnum, NULL, NULL);
832#endif
833 curwin->w_valid |= VALID_CHEIGHT;
834 }
835}
836
837/*
Bram Moolenaarc236c162008-07-13 17:41:49 +0000838 * Validate w_wcol and w_virtcol only.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 */
840 void
841validate_cursor_col()
842{
843 colnr_T off;
844 colnr_T col;
Bram Moolenaar6427c602010-02-03 17:43:07 +0100845 int width;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846
847 validate_virtcol();
848 if (!(curwin->w_valid & VALID_WCOL))
849 {
850 col = curwin->w_virtcol;
851 off = curwin_col_off();
852 col += off;
Bram Moolenaar6427c602010-02-03 17:43:07 +0100853 width = W_WIDTH(curwin) - off + curwin_col_off2();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854
855 /* long line wrapping, adjust curwin->w_wrow */
Bram Moolenaarc236c162008-07-13 17:41:49 +0000856 if (curwin->w_p_wrap
857 && col >= (colnr_T)W_WIDTH(curwin)
Bram Moolenaar6427c602010-02-03 17:43:07 +0100858 && width > 0)
859 /* use same formula as what is used in curs_columns() */
860 col -= ((col - W_WIDTH(curwin)) / width + 1) * width;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000861 if (col > (int)curwin->w_leftcol)
862 col -= curwin->w_leftcol;
863 else
864 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 curwin->w_wcol = col;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000866
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 curwin->w_valid |= VALID_WCOL;
868 }
869}
870
871/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200872 * Compute offset of a window, occupied by absolute or relative line number,
873 * fold column and sign column (these don't move when scrolling horizontally).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 */
875 int
876win_col_off(wp)
877 win_T *wp;
878{
Bram Moolenaar64486672010-05-16 15:46:46 +0200879 return (((wp->w_p_nu || wp->w_p_rnu) ? number_width(wp) + 1 : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880#ifdef FEAT_CMDWIN
881 + (cmdwin_type == 0 || wp != curwin ? 0 : 1)
882#endif
883#ifdef FEAT_FOLDING
884 + wp->w_p_fdc
885#endif
886#ifdef FEAT_SIGNS
887 + (
888# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200889 /* show glyph gutter in netbeans */
890 netbeans_active() ||
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891# endif
892 wp->w_buffer->b_signlist != NULL ? 2 : 0)
893#endif
894 );
895}
896
897 int
898curwin_col_off()
899{
900 return win_col_off(curwin);
901}
902
903/*
904 * Return the difference in column offset for the second screen line of a
Bram Moolenaar64486672010-05-16 15:46:46 +0200905 * wrapped line. It's 8 if 'number' or 'relativenumber' is on and 'n' is in
906 * 'cpoptions'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 */
908 int
909win_col_off2(wp)
910 win_T *wp;
911{
Bram Moolenaar64486672010-05-16 15:46:46 +0200912 if ((wp->w_p_nu || wp->w_p_rnu) && vim_strchr(p_cpo, CPO_NUMCOL) != NULL)
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000913 return number_width(wp) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 return 0;
915}
916
917 int
918curwin_col_off2()
919{
920 return win_col_off2(curwin);
921}
922
923/*
924 * compute curwin->w_wcol and curwin->w_virtcol.
925 * Also updates curwin->w_wrow and curwin->w_cline_row.
926 * Also updates curwin->w_leftcol.
927 */
928 void
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100929curs_columns(may_scroll)
930 int may_scroll; /* when TRUE, may scroll horizontally */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931{
932 int diff;
933 int extra; /* offset for first screen line */
934 int off_left, off_right;
935 int n;
936 int p_lines;
937 int width = 0;
938 int textwidth;
939 int new_leftcol;
940 colnr_T startcol;
941 colnr_T endcol;
942 colnr_T prev_skipcol;
943
944 /*
945 * First make sure that w_topline is valid (after moving the cursor).
946 */
947 update_topline();
948
949 /*
950 * Next make sure that w_cline_row is valid.
951 */
952 if (!(curwin->w_valid & VALID_CROW))
953 curs_rows(curwin, FALSE);
954
955 /*
956 * Compute the number of virtual columns.
957 */
958#ifdef FEAT_FOLDING
959 if (curwin->w_cline_folded)
960 /* In a folded line the cursor is always in the first column */
961 startcol = curwin->w_virtcol = endcol = curwin->w_leftcol;
962 else
963#endif
964 getvvcol(curwin, &curwin->w_cursor,
965 &startcol, &(curwin->w_virtcol), &endcol);
966
967 /* remove '$' from change command when cursor moves onto it */
968 if (startcol > dollar_vcol)
Bram Moolenaar76b9b362012-02-04 23:35:00 +0100969 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970
971 extra = curwin_col_off();
972 curwin->w_wcol = curwin->w_virtcol + extra;
973 endcol += extra;
974
975 /*
976 * Now compute w_wrow, counting screen lines from w_cline_row.
977 */
978 curwin->w_wrow = curwin->w_cline_row;
979
980 textwidth = W_WIDTH(curwin) - extra;
981 if (textwidth <= 0)
982 {
983 /* No room for text, put cursor in last char of window. */
984 curwin->w_wcol = W_WIDTH(curwin) - 1;
985 curwin->w_wrow = curwin->w_height - 1;
986 }
987 else if (curwin->w_p_wrap
988#ifdef FEAT_VERTSPLIT
989 && curwin->w_width != 0
990#endif
991 )
992 {
993 width = textwidth + curwin_col_off2();
994
995 /* long line wrapping, adjust curwin->w_wrow */
996 if (curwin->w_wcol >= W_WIDTH(curwin))
997 {
Bram Moolenaar6427c602010-02-03 17:43:07 +0100998 /* this same formula is used in validate_cursor_col() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 n = (curwin->w_wcol - W_WIDTH(curwin)) / width + 1;
1000 curwin->w_wcol -= n * width;
1001 curwin->w_wrow += n;
1002
1003#ifdef FEAT_LINEBREAK
1004 /* When cursor wraps to first char of next line in Insert
1005 * mode, the 'showbreak' string isn't shown, backup to first
1006 * column */
1007 if (*p_sbr && *ml_get_cursor() == NUL
1008 && curwin->w_wcol == (int)vim_strsize(p_sbr))
1009 curwin->w_wcol = 0;
1010#endif
1011 }
1012 }
1013
1014 /* No line wrapping: compute curwin->w_leftcol if scrolling is on and line
1015 * is not folded.
1016 * If scrolling is off, curwin->w_leftcol is assumed to be 0 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001017 else if (may_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018#ifdef FEAT_FOLDING
1019 && !curwin->w_cline_folded
1020#endif
1021 )
1022 {
1023 /*
1024 * If Cursor is left of the screen, scroll rightwards.
1025 * If Cursor is right of the screen, scroll leftwards
1026 * If we get closer to the edge than 'sidescrolloff', scroll a little
1027 * extra
1028 */
1029 off_left = (int)startcol - (int)curwin->w_leftcol - p_siso;
1030 off_right = (int)endcol - (int)(curwin->w_leftcol + W_WIDTH(curwin)
1031 - p_siso) + 1;
1032 if (off_left < 0 || off_right > 0)
1033 {
1034 if (off_left < 0)
1035 diff = -off_left;
1036 else
1037 diff = off_right;
1038
1039 /* When far off or not enough room on either side, put cursor in
1040 * middle of window. */
1041 if (p_ss == 0 || diff >= textwidth / 2 || off_right >= off_left)
1042 new_leftcol = curwin->w_wcol - extra - textwidth / 2;
1043 else
1044 {
1045 if (diff < p_ss)
1046 diff = p_ss;
1047 if (off_left < 0)
1048 new_leftcol = curwin->w_leftcol - diff;
1049 else
1050 new_leftcol = curwin->w_leftcol + diff;
1051 }
1052 if (new_leftcol < 0)
1053 new_leftcol = 0;
1054 if (new_leftcol != (int)curwin->w_leftcol)
1055 {
1056 curwin->w_leftcol = new_leftcol;
1057 /* screen has to be redrawn with new curwin->w_leftcol */
1058 redraw_later(NOT_VALID);
1059 }
1060 }
1061 curwin->w_wcol -= curwin->w_leftcol;
1062 }
1063 else if (curwin->w_wcol > (int)curwin->w_leftcol)
1064 curwin->w_wcol -= curwin->w_leftcol;
1065 else
1066 curwin->w_wcol = 0;
1067
1068#ifdef FEAT_DIFF
1069 /* Skip over filler lines. At the top use w_topfill, there
1070 * may be some filler lines above the window. */
1071 if (curwin->w_cursor.lnum == curwin->w_topline)
1072 curwin->w_wrow += curwin->w_topfill;
1073 else
1074 curwin->w_wrow += diff_check_fill(curwin, curwin->w_cursor.lnum);
1075#endif
1076
1077 prev_skipcol = curwin->w_skipcol;
1078
1079 p_lines = 0;
1080 if ((curwin->w_wrow >= curwin->w_height
1081 || ((prev_skipcol > 0
1082 || curwin->w_wrow + p_so >= curwin->w_height)
1083 && (p_lines =
1084#ifdef FEAT_DIFF
1085 plines_win_nofill
1086#else
1087 plines_win
1088#endif
1089 (curwin, curwin->w_cursor.lnum, FALSE))
1090 - 1 >= curwin->w_height))
1091 && curwin->w_height != 0
1092 && curwin->w_cursor.lnum == curwin->w_topline
1093 && width > 0
1094#ifdef FEAT_VERTSPLIT
1095 && curwin->w_width != 0
1096#endif
1097 )
1098 {
1099 /* Cursor past end of screen. Happens with a single line that does
1100 * not fit on screen. Find a skipcol to show the text around the
1101 * cursor. Avoid scrolling all the time. compute value of "extra":
1102 * 1: Less than "p_so" lines above
1103 * 2: Less than "p_so" lines below
1104 * 3: both of them */
1105 extra = 0;
1106 if (curwin->w_skipcol + p_so * width > curwin->w_virtcol)
1107 extra = 1;
1108 /* Compute last display line of the buffer line that we want at the
1109 * bottom of the window. */
1110 if (p_lines == 0)
1111 p_lines = plines_win(curwin, curwin->w_cursor.lnum, FALSE);
1112 --p_lines;
1113 if (p_lines > curwin->w_wrow + p_so)
1114 n = curwin->w_wrow + p_so;
1115 else
1116 n = p_lines;
1117 if ((colnr_T)n >= curwin->w_height + curwin->w_skipcol / width)
1118 extra += 2;
1119
1120 if (extra == 3 || p_lines < p_so * 2)
1121 {
1122 /* not enough room for 'scrolloff', put cursor in the middle */
1123 n = curwin->w_virtcol / width;
1124 if (n > curwin->w_height / 2)
1125 n -= curwin->w_height / 2;
1126 else
1127 n = 0;
1128 /* don't skip more than necessary */
1129 if (n > p_lines - curwin->w_height + 1)
1130 n = p_lines - curwin->w_height + 1;
1131 curwin->w_skipcol = n * width;
1132 }
1133 else if (extra == 1)
1134 {
1135 /* less then 'scrolloff' lines above, decrease skipcol */
1136 extra = (curwin->w_skipcol + p_so * width - curwin->w_virtcol
1137 + width - 1) / width;
1138 if (extra > 0)
1139 {
1140 if ((colnr_T)(extra * width) > curwin->w_skipcol)
1141 extra = curwin->w_skipcol / width;
1142 curwin->w_skipcol -= extra * width;
1143 }
1144 }
1145 else if (extra == 2)
1146 {
1147 /* less then 'scrolloff' lines below, increase skipcol */
1148 endcol = (n - curwin->w_height + 1) * width;
1149 while (endcol > curwin->w_virtcol)
1150 endcol -= width;
1151 if (endcol > curwin->w_skipcol)
1152 curwin->w_skipcol = endcol;
1153 }
1154
1155 curwin->w_wrow -= curwin->w_skipcol / width;
1156 if (curwin->w_wrow >= curwin->w_height)
1157 {
1158 /* small window, make sure cursor is in it */
1159 extra = curwin->w_wrow - curwin->w_height + 1;
1160 curwin->w_skipcol += extra * width;
1161 curwin->w_wrow -= extra;
1162 }
1163
1164 extra = ((int)prev_skipcol - (int)curwin->w_skipcol) / width;
1165 if (extra > 0)
1166 win_ins_lines(curwin, 0, extra, FALSE, FALSE);
1167 else if (extra < 0)
1168 win_del_lines(curwin, 0, -extra, FALSE, FALSE);
1169 }
1170 else
1171 curwin->w_skipcol = 0;
1172 if (prev_skipcol != curwin->w_skipcol)
1173 redraw_later(NOT_VALID);
1174
Bram Moolenaar64486672010-05-16 15:46:46 +02001175 /* Redraw when w_row changes and 'relativenumber' is set */
1176 if (((curwin->w_valid & VALID_WROW) == 0 && (curwin->w_p_rnu
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001177#ifdef FEAT_SYN_HL
Bram Moolenaar64486672010-05-16 15:46:46 +02001178 /* or when w_row changes and 'cursorline' is set. */
1179 || curwin->w_p_cul
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001180#endif
Bram Moolenaar64486672010-05-16 15:46:46 +02001181 ))
1182#ifdef FEAT_SYN_HL
1183 /* or when w_virtcol changes and 'cursorcolumn' is set */
1184 || (curwin->w_p_cuc && (curwin->w_valid & VALID_VIRTCOL) == 0)
1185#endif
1186 )
1187# ifdef FEAT_INS_EXPAND
1188 if (!pum_visible())
1189# endif
1190 redraw_later(SOME_VALID);
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00001191
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 curwin->w_valid |= VALID_WCOL|VALID_WROW|VALID_VIRTCOL;
1193}
1194
1195/*
1196 * Scroll the current window down by "line_count" logical lines. "CTRL-Y"
1197 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 void
1199scrolldown(line_count, byfold)
1200 long line_count;
Bram Moolenaar78a15312009-05-15 19:33:18 +00001201 int byfold UNUSED; /* TRUE: count a closed fold as one line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202{
1203 long done = 0; /* total # of physical lines done */
1204 int wrow;
1205 int moved = FALSE;
1206
1207#ifdef FEAT_FOLDING
1208 linenr_T first;
1209
1210 /* Make sure w_topline is at the first of a sequence of folded lines. */
1211 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1212#endif
1213 validate_cursor(); /* w_wrow needs to be valid */
1214 while (line_count-- > 0)
1215 {
1216#ifdef FEAT_DIFF
Bram Moolenaarfa316dd2009-11-03 15:23:14 +00001217 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)
1218 && curwin->w_topfill < curwin->w_height - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 {
1220 ++curwin->w_topfill;
1221 ++done;
1222 }
1223 else
1224#endif
1225 {
1226 if (curwin->w_topline == 1)
1227 break;
1228 --curwin->w_topline;
1229#ifdef FEAT_DIFF
1230 curwin->w_topfill = 0;
1231#endif
1232#ifdef FEAT_FOLDING
1233 /* A sequence of folded lines only counts for one logical line */
1234 if (hasFolding(curwin->w_topline, &first, NULL))
1235 {
1236 ++done;
1237 if (!byfold)
1238 line_count -= curwin->w_topline - first - 1;
1239 curwin->w_botline -= curwin->w_topline - first;
1240 curwin->w_topline = first;
1241 }
1242 else
1243#endif
1244#ifdef FEAT_DIFF
1245 done += plines_nofill(curwin->w_topline);
1246#else
1247 done += plines(curwin->w_topline);
1248#endif
1249 }
1250 --curwin->w_botline; /* approximate w_botline */
1251 invalidate_botline();
1252 }
1253 curwin->w_wrow += done; /* keep w_wrow updated */
1254 curwin->w_cline_row += done; /* keep w_cline_row updated */
1255
1256#ifdef FEAT_DIFF
1257 if (curwin->w_cursor.lnum == curwin->w_topline)
1258 curwin->w_cline_row = 0;
1259 check_topfill(curwin, TRUE);
1260#endif
1261
1262 /*
1263 * Compute the row number of the last row of the cursor line
1264 * and move the cursor onto the displayed part of the window.
1265 */
1266 wrow = curwin->w_wrow;
1267 if (curwin->w_p_wrap
1268#ifdef FEAT_VERTSPLIT
1269 && curwin->w_width != 0
1270#endif
1271 )
1272 {
1273 validate_virtcol();
1274 validate_cheight();
1275 wrow += curwin->w_cline_height - 1 -
1276 curwin->w_virtcol / W_WIDTH(curwin);
1277 }
1278 while (wrow >= curwin->w_height && curwin->w_cursor.lnum > 1)
1279 {
1280#ifdef FEAT_FOLDING
1281 if (hasFolding(curwin->w_cursor.lnum, &first, NULL))
1282 {
1283 --wrow;
1284 if (first == 1)
1285 curwin->w_cursor.lnum = 1;
1286 else
1287 curwin->w_cursor.lnum = first - 1;
1288 }
1289 else
1290#endif
1291 wrow -= plines(curwin->w_cursor.lnum--);
1292 curwin->w_valid &=
1293 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1294 moved = TRUE;
1295 }
1296 if (moved)
1297 {
1298#ifdef FEAT_FOLDING
1299 /* Move cursor to first line of closed fold. */
1300 foldAdjustCursor();
1301#endif
1302 coladvance(curwin->w_curswant);
1303 }
1304}
1305
1306/*
1307 * Scroll the current window up by "line_count" logical lines. "CTRL-E"
1308 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 void
1310scrollup(line_count, byfold)
1311 long line_count;
Bram Moolenaar78a15312009-05-15 19:33:18 +00001312 int byfold UNUSED; /* TRUE: count a closed fold as one line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313{
1314#if defined(FEAT_FOLDING) || defined(FEAT_DIFF)
1315 linenr_T lnum;
1316
1317 if (
1318# ifdef FEAT_FOLDING
1319 (byfold && hasAnyFolding(curwin))
1320# ifdef FEAT_DIFF
1321 ||
1322# endif
1323# endif
1324# ifdef FEAT_DIFF
1325 curwin->w_p_diff
1326# endif
1327 )
1328 {
1329 /* count each sequence of folded lines as one logical line */
1330 lnum = curwin->w_topline;
1331 while (line_count--)
1332 {
1333# ifdef FEAT_DIFF
1334 if (curwin->w_topfill > 0)
1335 --curwin->w_topfill;
1336 else
1337# endif
1338 {
1339# ifdef FEAT_FOLDING
1340 if (byfold)
1341 (void)hasFolding(lnum, NULL, &lnum);
1342# endif
1343 if (lnum >= curbuf->b_ml.ml_line_count)
1344 break;
1345 ++lnum;
1346# ifdef FEAT_DIFF
1347 curwin->w_topfill = diff_check_fill(curwin, lnum);
1348# endif
1349 }
1350 }
1351 /* approximate w_botline */
1352 curwin->w_botline += lnum - curwin->w_topline;
1353 curwin->w_topline = lnum;
1354 }
1355 else
1356#endif
1357 {
1358 curwin->w_topline += line_count;
1359 curwin->w_botline += line_count; /* approximate w_botline */
1360 }
1361
1362 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
1363 curwin->w_topline = curbuf->b_ml.ml_line_count;
1364 if (curwin->w_botline > curbuf->b_ml.ml_line_count + 1)
1365 curwin->w_botline = curbuf->b_ml.ml_line_count + 1;
1366
1367#ifdef FEAT_DIFF
1368 check_topfill(curwin, FALSE);
1369#endif
1370
1371#ifdef FEAT_FOLDING
1372 if (hasAnyFolding(curwin))
1373 /* Make sure w_topline is at the first of a sequence of folded lines. */
1374 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1375#endif
1376
1377 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1378 if (curwin->w_cursor.lnum < curwin->w_topline)
1379 {
1380 curwin->w_cursor.lnum = curwin->w_topline;
1381 curwin->w_valid &=
1382 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW|VALID_VIRTCOL);
1383 coladvance(curwin->w_curswant);
1384 }
1385}
1386
1387#ifdef FEAT_DIFF
1388/*
1389 * Don't end up with too many filler lines in the window.
1390 */
1391 void
1392check_topfill(wp, down)
1393 win_T *wp;
1394 int down; /* when TRUE scroll down when not enough space */
1395{
1396 int n;
1397
1398 if (wp->w_topfill > 0)
1399 {
1400 n = plines_win_nofill(wp, wp->w_topline, TRUE);
1401 if (wp->w_topfill + n > wp->w_height)
1402 {
1403 if (down && wp->w_topline > 1)
1404 {
1405 --wp->w_topline;
1406 wp->w_topfill = 0;
1407 }
1408 else
1409 {
1410 wp->w_topfill = wp->w_height - n;
1411 if (wp->w_topfill < 0)
1412 wp->w_topfill = 0;
1413 }
1414 }
1415 }
1416}
1417
1418/*
1419 * Use as many filler lines as possible for w_topline. Make sure w_topline
1420 * is still visible.
1421 */
1422 static void
1423max_topfill()
1424{
1425 int n;
1426
1427 n = plines_nofill(curwin->w_topline);
1428 if (n >= curwin->w_height)
1429 curwin->w_topfill = 0;
1430 else
1431 {
1432 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
1433 if (curwin->w_topfill + n > curwin->w_height)
1434 curwin->w_topfill = curwin->w_height - n;
1435 }
1436}
1437#endif
1438
1439#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1440/*
1441 * Scroll the screen one line down, but don't do it if it would move the
1442 * cursor off the screen.
1443 */
1444 void
1445scrolldown_clamp()
1446{
1447 int end_row;
1448#ifdef FEAT_DIFF
1449 int can_fill = (curwin->w_topfill
1450 < diff_check_fill(curwin, curwin->w_topline));
1451#endif
1452
1453 if (curwin->w_topline <= 1
1454#ifdef FEAT_DIFF
1455 && !can_fill
1456#endif
1457 )
1458 return;
1459
1460 validate_cursor(); /* w_wrow needs to be valid */
1461
1462 /*
1463 * Compute the row number of the last row of the cursor line
1464 * and make sure it doesn't go off the screen. Make sure the cursor
1465 * doesn't go past 'scrolloff' lines from the screen end.
1466 */
1467 end_row = curwin->w_wrow;
1468#ifdef FEAT_DIFF
1469 if (can_fill)
1470 ++end_row;
1471 else
1472 end_row += plines_nofill(curwin->w_topline - 1);
1473#else
1474 end_row += plines(curwin->w_topline - 1);
1475#endif
1476 if (curwin->w_p_wrap
1477#ifdef FEAT_VERTSPLIT
1478 && curwin->w_width != 0
1479#endif
1480 )
1481 {
1482 validate_cheight();
1483 validate_virtcol();
1484 end_row += curwin->w_cline_height - 1 -
1485 curwin->w_virtcol / W_WIDTH(curwin);
1486 }
1487 if (end_row < curwin->w_height - p_so)
1488 {
1489#ifdef FEAT_DIFF
1490 if (can_fill)
1491 {
1492 ++curwin->w_topfill;
1493 check_topfill(curwin, TRUE);
1494 }
1495 else
1496 {
1497 --curwin->w_topline;
1498 curwin->w_topfill = 0;
1499 }
1500#else
1501 --curwin->w_topline;
1502#endif
1503#ifdef FEAT_FOLDING
1504 hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1505#endif
1506 --curwin->w_botline; /* approximate w_botline */
1507 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1508 }
1509}
1510
1511/*
1512 * Scroll the screen one line up, but don't do it if it would move the cursor
1513 * off the screen.
1514 */
1515 void
1516scrollup_clamp()
1517{
1518 int start_row;
1519
1520 if (curwin->w_topline == curbuf->b_ml.ml_line_count
1521#ifdef FEAT_DIFF
1522 && curwin->w_topfill == 0
1523#endif
1524 )
1525 return;
1526
1527 validate_cursor(); /* w_wrow needs to be valid */
1528
1529 /*
1530 * Compute the row number of the first row of the cursor line
1531 * and make sure it doesn't go off the screen. Make sure the cursor
1532 * doesn't go before 'scrolloff' lines from the screen start.
1533 */
1534#ifdef FEAT_DIFF
1535 start_row = curwin->w_wrow - plines_nofill(curwin->w_topline)
1536 - curwin->w_topfill;
1537#else
1538 start_row = curwin->w_wrow - plines(curwin->w_topline);
1539#endif
1540 if (curwin->w_p_wrap
1541#ifdef FEAT_VERTSPLIT
1542 && curwin->w_width != 0
1543#endif
1544 )
1545 {
1546 validate_virtcol();
1547 start_row -= curwin->w_virtcol / W_WIDTH(curwin);
1548 }
1549 if (start_row >= p_so)
1550 {
1551#ifdef FEAT_DIFF
1552 if (curwin->w_topfill > 0)
1553 --curwin->w_topfill;
1554 else
1555#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001556 {
1557#ifdef FEAT_FOLDING
1558 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
1559#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 ++curwin->w_topline;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001561 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 ++curwin->w_botline; /* approximate w_botline */
1563 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
1564 }
1565}
1566#endif /* FEAT_INS_EXPAND */
1567
1568/*
1569 * Add one line above "lp->lnum". This can be a filler line, a closed fold or
1570 * a (wrapped) text line. Uses and sets "lp->fill".
1571 * Returns the height of the added line in "lp->height".
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01001572 * Lines above the first one are incredibly high: MAXCOL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 */
1574 static void
1575topline_back(lp)
1576 lineoff_T *lp;
1577{
1578#ifdef FEAT_DIFF
1579 if (lp->fill < diff_check_fill(curwin, lp->lnum))
1580 {
1581 /* Add a filler line. */
1582 ++lp->fill;
1583 lp->height = 1;
1584 }
1585 else
1586#endif
1587 {
1588 --lp->lnum;
1589#ifdef FEAT_DIFF
1590 lp->fill = 0;
1591#endif
1592 if (lp->lnum < 1)
1593 lp->height = MAXCOL;
1594 else
1595#ifdef FEAT_FOLDING
1596 if (hasFolding(lp->lnum, &lp->lnum, NULL))
1597 /* Add a closed fold */
1598 lp->height = 1;
1599 else
1600#endif
1601 {
1602#ifdef FEAT_DIFF
1603 lp->height = plines_nofill(lp->lnum);
1604#else
1605 lp->height = plines(lp->lnum);
1606#endif
1607 }
1608 }
1609}
1610
1611/*
1612 * Add one line below "lp->lnum". This can be a filler line, a closed fold or
1613 * a (wrapped) text line. Uses and sets "lp->fill".
1614 * Returns the height of the added line in "lp->height".
1615 * Lines below the last one are incredibly high.
1616 */
1617 static void
1618botline_forw(lp)
1619 lineoff_T *lp;
1620{
1621#ifdef FEAT_DIFF
1622 if (lp->fill < diff_check_fill(curwin, lp->lnum + 1))
1623 {
1624 /* Add a filler line. */
1625 ++lp->fill;
1626 lp->height = 1;
1627 }
1628 else
1629#endif
1630 {
1631 ++lp->lnum;
1632#ifdef FEAT_DIFF
1633 lp->fill = 0;
1634#endif
1635 if (lp->lnum > curbuf->b_ml.ml_line_count)
1636 lp->height = MAXCOL;
1637 else
1638#ifdef FEAT_FOLDING
1639 if (hasFolding(lp->lnum, NULL, &lp->lnum))
1640 /* Add a closed fold */
1641 lp->height = 1;
1642 else
1643#endif
1644 {
1645#ifdef FEAT_DIFF
1646 lp->height = plines_nofill(lp->lnum);
1647#else
1648 lp->height = plines(lp->lnum);
1649#endif
1650 }
1651 }
1652}
1653
1654#ifdef FEAT_DIFF
1655/*
1656 * Switch from including filler lines below lp->lnum to including filler
1657 * lines above loff.lnum + 1. This keeps pointing to the same line.
1658 * When there are no filler lines nothing changes.
1659 */
1660 static void
1661botline_topline(lp)
1662 lineoff_T *lp;
1663{
1664 if (lp->fill > 0)
1665 {
1666 ++lp->lnum;
1667 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
1668 }
1669}
1670
1671/*
1672 * Switch from including filler lines above lp->lnum to including filler
1673 * lines below loff.lnum - 1. This keeps pointing to the same line.
1674 * When there are no filler lines nothing changes.
1675 */
1676 static void
1677topline_botline(lp)
1678 lineoff_T *lp;
1679{
1680 if (lp->fill > 0)
1681 {
1682 lp->fill = diff_check_fill(curwin, lp->lnum) - lp->fill + 1;
1683 --lp->lnum;
1684 }
1685}
1686#endif
1687
1688/*
1689 * Recompute topline to put the cursor at the top of the window.
1690 * Scroll at least "min_scroll" lines.
1691 * If "always" is TRUE, always set topline (for "zt").
1692 */
1693 void
1694scroll_cursor_top(min_scroll, always)
1695 int min_scroll;
1696 int always;
1697{
1698 int scrolled = 0;
1699 int extra = 0;
1700 int used;
1701 int i;
1702 linenr_T top; /* just above displayed lines */
1703 linenr_T bot; /* just below displayed lines */
1704 linenr_T old_topline = curwin->w_topline;
1705#ifdef FEAT_DIFF
1706 linenr_T old_topfill = curwin->w_topfill;
1707#endif
1708 linenr_T new_topline;
1709 int off = p_so;
1710
1711#ifdef FEAT_MOUSE
1712 if (mouse_dragging > 0)
1713 off = mouse_dragging - 1;
1714#endif
1715
1716 /*
1717 * Decrease topline until:
1718 * - it has become 1
1719 * - (part of) the cursor line is moved off the screen or
1720 * - moved at least 'scrolljump' lines and
1721 * - at least 'scrolloff' lines above and below the cursor
1722 */
1723 validate_cheight();
1724 used = curwin->w_cline_height;
1725 if (curwin->w_cursor.lnum < curwin->w_topline)
1726 scrolled = used;
1727
1728#ifdef FEAT_FOLDING
1729 if (hasFolding(curwin->w_cursor.lnum, &top, &bot))
1730 {
1731 --top;
1732 ++bot;
1733 }
1734 else
1735#endif
1736 {
1737 top = curwin->w_cursor.lnum - 1;
1738 bot = curwin->w_cursor.lnum + 1;
1739 }
1740 new_topline = top + 1;
1741
1742#ifdef FEAT_DIFF
1743 /* count filler lines of the cursor window as context */
1744 i = diff_check_fill(curwin, curwin->w_cursor.lnum);
1745 used += i;
1746 extra += i;
1747#endif
1748
1749 /*
1750 * Check if the lines from "top" to "bot" fit in the window. If they do,
1751 * set new_topline and advance "top" and "bot" to include more lines.
1752 */
1753 while (top > 0)
1754 {
1755#ifdef FEAT_FOLDING
1756 if (hasFolding(top, &top, NULL))
1757 /* count one logical line for a sequence of folded lines */
1758 i = 1;
1759 else
1760#endif
1761 i = plines(top);
1762 used += i;
1763 if (extra + i <= off && bot < curbuf->b_ml.ml_line_count)
1764 {
1765#ifdef FEAT_FOLDING
1766 if (hasFolding(bot, NULL, &bot))
1767 /* count one logical line for a sequence of folded lines */
1768 ++used;
1769 else
1770#endif
1771 used += plines(bot);
1772 }
1773 if (used > curwin->w_height)
1774 break;
1775 if (top < curwin->w_topline)
1776 scrolled += i;
1777
1778 /*
1779 * If scrolling is needed, scroll at least 'sj' lines.
1780 */
1781 if ((new_topline >= curwin->w_topline || scrolled > min_scroll)
1782 && extra >= off)
1783 break;
1784
1785 extra += i;
1786 new_topline = top;
1787 --top;
1788 ++bot;
1789 }
1790
1791 /*
1792 * If we don't have enough space, put cursor in the middle.
1793 * This makes sure we get the same position when using "k" and "j"
1794 * in a small window.
1795 */
1796 if (used > curwin->w_height)
1797 scroll_cursor_halfway(FALSE);
1798 else
1799 {
1800 /*
1801 * If "always" is FALSE, only adjust topline to a lower value, higher
1802 * value may happen with wrapping lines
1803 */
1804 if (new_topline < curwin->w_topline || always)
1805 curwin->w_topline = new_topline;
1806 if (curwin->w_topline > curwin->w_cursor.lnum)
1807 curwin->w_topline = curwin->w_cursor.lnum;
1808#ifdef FEAT_DIFF
1809 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
1810 if (curwin->w_topfill > 0 && extra > off)
1811 {
1812 curwin->w_topfill -= extra - off;
1813 if (curwin->w_topfill < 0)
1814 curwin->w_topfill = 0;
1815 }
1816 check_topfill(curwin, FALSE);
1817#endif
1818 if (curwin->w_topline != old_topline
1819#ifdef FEAT_DIFF
1820 || curwin->w_topfill != old_topfill
1821#endif
1822 )
1823 curwin->w_valid &=
1824 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
1825 curwin->w_valid |= VALID_TOPLINE;
1826 }
1827}
1828
1829/*
1830 * Set w_empty_rows and w_filler_rows for window "wp", having used up "used"
1831 * screen lines for text lines.
1832 */
1833 void
1834set_empty_rows(wp, used)
1835 win_T *wp;
1836 int used;
1837{
1838#ifdef FEAT_DIFF
1839 wp->w_filler_rows = 0;
1840#endif
1841 if (used == 0)
1842 wp->w_empty_rows = 0; /* single line that doesn't fit */
1843 else
1844 {
1845 wp->w_empty_rows = wp->w_height - used;
1846#ifdef FEAT_DIFF
1847 if (wp->w_botline <= wp->w_buffer->b_ml.ml_line_count)
1848 {
1849 wp->w_filler_rows = diff_check_fill(wp, wp->w_botline);
1850 if (wp->w_empty_rows > wp->w_filler_rows)
1851 wp->w_empty_rows -= wp->w_filler_rows;
1852 else
1853 {
1854 wp->w_filler_rows = wp->w_empty_rows;
1855 wp->w_empty_rows = 0;
1856 }
1857 }
1858#endif
1859 }
1860}
1861
1862/*
1863 * Recompute topline to put the cursor at the bottom of the window.
1864 * Scroll at least "min_scroll" lines.
1865 * If "set_topbot" is TRUE, set topline and botline first (for "zb").
1866 * This is messy stuff!!!
1867 */
1868 void
1869scroll_cursor_bot(min_scroll, set_topbot)
1870 int min_scroll;
1871 int set_topbot;
1872{
1873 int used;
1874 int scrolled = 0;
1875 int extra = 0;
1876 int i;
1877 linenr_T line_count;
1878 linenr_T old_topline = curwin->w_topline;
1879 lineoff_T loff;
1880 lineoff_T boff;
1881#ifdef FEAT_DIFF
1882 int old_topfill = curwin->w_topfill;
1883 int fill_below_window;
1884#endif
1885 linenr_T old_botline = curwin->w_botline;
1886 linenr_T old_valid = curwin->w_valid;
1887 int old_empty_rows = curwin->w_empty_rows;
1888 linenr_T cln; /* Cursor Line Number */
1889
1890 cln = curwin->w_cursor.lnum;
1891 if (set_topbot)
1892 {
1893 used = 0;
1894 curwin->w_botline = cln + 1;
1895#ifdef FEAT_DIFF
1896 loff.fill = 0;
1897#endif
1898 for (curwin->w_topline = curwin->w_botline;
1899 curwin->w_topline > 1;
1900 curwin->w_topline = loff.lnum)
1901 {
1902 loff.lnum = curwin->w_topline;
1903 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01001904 if (loff.height == MAXCOL || used + loff.height > curwin->w_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 break;
1906 used += loff.height;
1907#ifdef FEAT_DIFF
1908 curwin->w_topfill = loff.fill;
1909#endif
1910 }
1911 set_empty_rows(curwin, used);
1912 curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
1913 if (curwin->w_topline != old_topline
1914#ifdef FEAT_DIFF
1915 || curwin->w_topfill != old_topfill
1916#endif
1917 )
1918 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
1919 }
1920 else
1921 validate_botline();
1922
1923 /* The lines of the cursor line itself are always used. */
1924#ifdef FEAT_DIFF
1925 used = plines_nofill(cln);
1926#else
1927 validate_cheight();
1928 used = curwin->w_cline_height;
1929#endif
1930
1931 /* If the cursor is below botline, we will at least scroll by the height
1932 * of the cursor line. Correct for empty lines, which are really part of
1933 * botline. */
1934 if (cln >= curwin->w_botline)
1935 {
1936 scrolled = used;
1937 if (cln == curwin->w_botline)
1938 scrolled -= curwin->w_empty_rows;
1939 }
1940
1941 /*
1942 * Stop counting lines to scroll when
1943 * - hitting start of the file
1944 * - scrolled nothing or at least 'sj' lines
1945 * - at least 'so' lines below the cursor
1946 * - lines between botline and cursor have been counted
1947 */
1948#ifdef FEAT_FOLDING
1949 if (!hasFolding(curwin->w_cursor.lnum, &loff.lnum, &boff.lnum))
1950#endif
1951 {
1952 loff.lnum = cln;
1953 boff.lnum = cln;
1954 }
1955#ifdef FEAT_DIFF
1956 loff.fill = 0;
1957 boff.fill = 0;
1958 fill_below_window = diff_check_fill(curwin, curwin->w_botline)
1959 - curwin->w_filler_rows;
1960#endif
1961
1962 while (loff.lnum > 1)
1963 {
1964 /* Stop when scrolled nothing or at least "min_scroll", found "extra"
1965 * context for 'scrolloff' and counted all lines below the window. */
1966 if ((((scrolled <= 0 || scrolled >= min_scroll)
1967 && extra >= (
1968#ifdef FEAT_MOUSE
Bram Moolenaar9964e462007-05-05 17:54:07 +00001969 mouse_dragging > 0 ? mouse_dragging - 1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970#endif
1971 p_so))
1972 || boff.lnum + 1 > curbuf->b_ml.ml_line_count)
1973 && loff.lnum <= curwin->w_botline
1974#ifdef FEAT_DIFF
1975 && (loff.lnum < curwin->w_botline
1976 || loff.fill >= fill_below_window)
1977#endif
1978 )
1979 break;
1980
1981 /* Add one line above */
1982 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01001983 if (loff.height == MAXCOL)
1984 used = MAXCOL;
1985 else
1986 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 if (used > curwin->w_height)
1988 break;
1989 if (loff.lnum >= curwin->w_botline
1990#ifdef FEAT_DIFF
1991 && (loff.lnum > curwin->w_botline
1992 || loff.fill <= fill_below_window)
1993#endif
1994 )
1995 {
1996 /* Count screen lines that are below the window. */
1997 scrolled += loff.height;
1998 if (loff.lnum == curwin->w_botline
1999#ifdef FEAT_DIFF
2000 && boff.fill == 0
2001#endif
2002 )
2003 scrolled -= curwin->w_empty_rows;
2004 }
2005
2006 if (boff.lnum < curbuf->b_ml.ml_line_count)
2007 {
2008 /* Add one line below */
2009 botline_forw(&boff);
2010 used += boff.height;
2011 if (used > curwin->w_height)
2012 break;
2013 if (extra < (
2014#ifdef FEAT_MOUSE
2015 mouse_dragging > 0 ? mouse_dragging - 1 :
2016#endif
2017 p_so) || scrolled < min_scroll)
2018 {
2019 extra += boff.height;
2020 if (boff.lnum >= curwin->w_botline
2021#ifdef FEAT_DIFF
2022 || (boff.lnum + 1 == curwin->w_botline
2023 && boff.fill > curwin->w_filler_rows)
2024#endif
2025 )
2026 {
2027 /* Count screen lines that are below the window. */
2028 scrolled += boff.height;
2029 if (boff.lnum == curwin->w_botline
2030#ifdef FEAT_DIFF
2031 && boff.fill == 0
2032#endif
2033 )
2034 scrolled -= curwin->w_empty_rows;
2035 }
2036 }
2037 }
2038 }
2039
2040 /* curwin->w_empty_rows is larger, no need to scroll */
2041 if (scrolled <= 0)
2042 line_count = 0;
2043 /* more than a screenfull, don't scroll but redraw */
2044 else if (used > curwin->w_height)
2045 line_count = used;
2046 /* scroll minimal number of lines */
2047 else
2048 {
2049 line_count = 0;
2050#ifdef FEAT_DIFF
2051 boff.fill = curwin->w_topfill;
2052#endif
2053 boff.lnum = curwin->w_topline - 1;
2054 for (i = 0; i < scrolled && boff.lnum < curwin->w_botline; )
2055 {
2056 botline_forw(&boff);
2057 i += boff.height;
2058 ++line_count;
2059 }
2060 if (i < scrolled) /* below curwin->w_botline, don't scroll */
2061 line_count = 9999;
2062 }
2063
2064 /*
2065 * Scroll up if the cursor is off the bottom of the screen a bit.
2066 * Otherwise put it at 1/2 of the screen.
2067 */
2068 if (line_count >= curwin->w_height && line_count > min_scroll)
2069 scroll_cursor_halfway(FALSE);
2070 else
2071 scrollup(line_count, TRUE);
2072
2073 /*
2074 * If topline didn't change we need to restore w_botline and w_empty_rows
2075 * (we changed them).
2076 * If topline did change, update_screen() will set botline.
2077 */
2078 if (curwin->w_topline == old_topline && set_topbot)
2079 {
2080 curwin->w_botline = old_botline;
2081 curwin->w_empty_rows = old_empty_rows;
2082 curwin->w_valid = old_valid;
2083 }
2084 curwin->w_valid |= VALID_TOPLINE;
2085}
2086
2087/*
2088 * Recompute topline to put the cursor halfway the window
2089 * If "atend" is TRUE, also put it halfway at the end of the file.
2090 */
2091 void
2092scroll_cursor_halfway(atend)
2093 int atend;
2094{
2095 int above = 0;
2096 linenr_T topline;
2097#ifdef FEAT_DIFF
2098 int topfill = 0;
2099#endif
2100 int below = 0;
2101 int used;
2102 lineoff_T loff;
2103 lineoff_T boff;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002104#ifdef FEAT_DIFF
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002105 linenr_T old_topline = curwin->w_topline;
Bram Moolenaarb8e23052014-02-11 18:58:09 +01002106#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107
2108 loff.lnum = boff.lnum = curwin->w_cursor.lnum;
2109#ifdef FEAT_FOLDING
2110 (void)hasFolding(loff.lnum, &loff.lnum, &boff.lnum);
2111#endif
2112#ifdef FEAT_DIFF
2113 used = plines_nofill(loff.lnum);
2114 loff.fill = 0;
2115 boff.fill = 0;
2116#else
2117 used = plines(loff.lnum);
2118#endif
2119 topline = loff.lnum;
2120 while (topline > 1)
2121 {
2122 if (below <= above) /* add a line below the cursor first */
2123 {
2124 if (boff.lnum < curbuf->b_ml.ml_line_count)
2125 {
2126 botline_forw(&boff);
2127 used += boff.height;
2128 if (used > curwin->w_height)
2129 break;
2130 below += boff.height;
2131 }
2132 else
2133 {
2134 ++below; /* count a "~" line */
2135 if (atend)
2136 ++used;
2137 }
2138 }
2139
2140 if (below > above) /* add a line above the cursor */
2141 {
2142 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002143 if (loff.height == MAXCOL)
2144 used = MAXCOL;
2145 else
2146 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147 if (used > curwin->w_height)
2148 break;
2149 above += loff.height;
2150 topline = loff.lnum;
2151#ifdef FEAT_DIFF
2152 topfill = loff.fill;
2153#endif
2154 }
2155 }
2156#ifdef FEAT_FOLDING
2157 if (!hasFolding(topline, &curwin->w_topline, NULL))
2158#endif
2159 curwin->w_topline = topline;
2160#ifdef FEAT_DIFF
2161 curwin->w_topfill = topfill;
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002162 if (old_topline > curwin->w_topline + curwin->w_height)
2163 curwin->w_botfill = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 check_topfill(curwin, FALSE);
2165#endif
2166 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2167 curwin->w_valid |= VALID_TOPLINE;
2168}
2169
2170/*
2171 * Correct the cursor position so that it is in a part of the screen at least
2172 * 'so' lines from the top and bottom, if possible.
2173 * If not possible, put it at the same position as scroll_cursor_halfway().
2174 * When called topline must be valid!
2175 */
2176 void
2177cursor_correct()
2178{
2179 int above = 0; /* screen lines above topline */
2180 linenr_T topline;
2181 int below = 0; /* screen lines below botline */
2182 linenr_T botline;
2183 int above_wanted, below_wanted;
2184 linenr_T cln; /* Cursor Line Number */
2185 int max_off;
2186
2187 /*
2188 * How many lines we would like to have above/below the cursor depends on
2189 * whether the first/last line of the file is on screen.
2190 */
2191 above_wanted = p_so;
2192 below_wanted = p_so;
2193#ifdef FEAT_MOUSE
Bram Moolenaar9964e462007-05-05 17:54:07 +00002194 if (mouse_dragging > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 {
2196 above_wanted = mouse_dragging - 1;
2197 below_wanted = mouse_dragging - 1;
2198 }
2199#endif
2200 if (curwin->w_topline == 1)
2201 {
2202 above_wanted = 0;
2203 max_off = curwin->w_height / 2;
2204 if (below_wanted > max_off)
2205 below_wanted = max_off;
2206 }
2207 validate_botline();
2208 if (curwin->w_botline == curbuf->b_ml.ml_line_count + 1
2209#ifdef FEAT_MOUSE
Bram Moolenaar9964e462007-05-05 17:54:07 +00002210 && mouse_dragging == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211#endif
2212 )
2213 {
2214 below_wanted = 0;
2215 max_off = (curwin->w_height - 1) / 2;
2216 if (above_wanted > max_off)
2217 above_wanted = max_off;
2218 }
2219
2220 /*
2221 * If there are sufficient file-lines above and below the cursor, we can
2222 * return now.
2223 */
2224 cln = curwin->w_cursor.lnum;
2225 if (cln >= curwin->w_topline + above_wanted
2226 && cln < curwin->w_botline - below_wanted
2227#ifdef FEAT_FOLDING
2228 && !hasAnyFolding(curwin)
2229#endif
2230 )
2231 return;
2232
2233 /*
2234 * Narrow down the area where the cursor can be put by taking lines from
2235 * the top and the bottom until:
2236 * - the desired context lines are found
2237 * - the lines from the top is past the lines from the bottom
2238 */
2239 topline = curwin->w_topline;
2240 botline = curwin->w_botline - 1;
2241#ifdef FEAT_DIFF
2242 /* count filler lines as context */
2243 above = curwin->w_topfill;
2244 below = curwin->w_filler_rows;
2245#endif
2246 while ((above < above_wanted || below < below_wanted) && topline < botline)
2247 {
2248 if (below < below_wanted && (below <= above || above >= above_wanted))
2249 {
2250#ifdef FEAT_FOLDING
2251 if (hasFolding(botline, &botline, NULL))
2252 ++below;
2253 else
2254#endif
2255 below += plines(botline);
2256 --botline;
2257 }
2258 if (above < above_wanted && (above < below || below >= below_wanted))
2259 {
2260#ifdef FEAT_FOLDING
2261 if (hasFolding(topline, NULL, &topline))
2262 ++above;
2263 else
2264#endif
2265#ifndef FEAT_DIFF
2266 above += plines(topline);
2267#else
2268 above += plines_nofill(topline);
2269
2270 /* Count filler lines below this line as context. */
2271 if (topline < botline)
2272 above += diff_check_fill(curwin, topline + 1);
2273#endif
2274 ++topline;
2275 }
2276 }
2277 if (topline == botline || botline == 0)
2278 curwin->w_cursor.lnum = topline;
2279 else if (topline > botline)
2280 curwin->w_cursor.lnum = botline;
2281 else
2282 {
2283 if (cln < topline && curwin->w_topline > 1)
2284 {
2285 curwin->w_cursor.lnum = topline;
2286 curwin->w_valid &=
2287 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2288 }
2289 if (cln > botline && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2290 {
2291 curwin->w_cursor.lnum = botline;
2292 curwin->w_valid &=
2293 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2294 }
2295 }
2296 curwin->w_valid |= VALID_TOPLINE;
2297}
2298
2299static void get_scroll_overlap __ARGS((lineoff_T *lp, int dir));
2300
2301/*
2302 * move screen 'count' pages up or down and update screen
2303 *
2304 * return FAIL for failure, OK otherwise
2305 */
2306 int
2307onepage(dir, count)
2308 int dir;
2309 long count;
2310{
2311 long n;
2312 int retval = OK;
2313 lineoff_T loff;
2314 linenr_T old_topline = curwin->w_topline;
2315
2316 if (curbuf->b_ml.ml_line_count == 1) /* nothing to do */
2317 {
2318 beep_flush();
2319 return FAIL;
2320 }
2321
2322 for ( ; count > 0; --count)
2323 {
2324 validate_botline();
2325 /*
2326 * It's an error to move a page up when the first line is already on
2327 * the screen. It's an error to move a page down when the last line
2328 * is on the screen and the topline is 'scrolloff' lines from the
2329 * last line.
2330 */
2331 if (dir == FORWARD
2332 ? ((curwin->w_topline >= curbuf->b_ml.ml_line_count - p_so)
2333 && curwin->w_botline > curbuf->b_ml.ml_line_count)
2334 : (curwin->w_topline == 1
2335#ifdef FEAT_DIFF
2336 && curwin->w_topfill ==
2337 diff_check_fill(curwin, curwin->w_topline)
2338#endif
2339 ))
2340 {
2341 beep_flush();
2342 retval = FAIL;
2343 break;
2344 }
2345
2346#ifdef FEAT_DIFF
2347 loff.fill = 0;
2348#endif
2349 if (dir == FORWARD)
2350 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002351 if (firstwin == lastwin && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002353 /* Vi compatible scrolling */
2354 if (p_window <= 2)
2355 ++curwin->w_topline;
2356 else
2357 curwin->w_topline += p_window - 2;
2358 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
2359 curwin->w_topline = curbuf->b_ml.ml_line_count;
2360 curwin->w_cursor.lnum = curwin->w_topline;
2361 }
2362 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2363 {
2364 /* at end of file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 curwin->w_topline = curbuf->b_ml.ml_line_count;
2366#ifdef FEAT_DIFF
2367 curwin->w_topfill = 0;
2368#endif
2369 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2370 }
2371 else
2372 {
2373 /* For the overlap, start with the line just below the window
2374 * and go upwards. */
2375 loff.lnum = curwin->w_botline;
2376#ifdef FEAT_DIFF
2377 loff.fill = diff_check_fill(curwin, loff.lnum)
2378 - curwin->w_filler_rows;
2379#endif
2380 get_scroll_overlap(&loff, -1);
2381 curwin->w_topline = loff.lnum;
2382#ifdef FEAT_DIFF
2383 curwin->w_topfill = loff.fill;
2384 check_topfill(curwin, FALSE);
2385#endif
2386 curwin->w_cursor.lnum = curwin->w_topline;
2387 curwin->w_valid &= ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|
2388 VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2389 }
2390 }
2391 else /* dir == BACKWARDS */
2392 {
2393#ifdef FEAT_DIFF
2394 if (curwin->w_topline == 1)
2395 {
2396 /* Include max number of filler lines */
2397 max_topfill();
2398 continue;
2399 }
2400#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002401 if (firstwin == lastwin && p_window > 0 && p_window < Rows - 1)
2402 {
2403 /* Vi compatible scrolling (sort of) */
2404 if (p_window <= 2)
2405 --curwin->w_topline;
2406 else
2407 curwin->w_topline -= p_window - 2;
2408 if (curwin->w_topline < 1)
2409 curwin->w_topline = 1;
2410 curwin->w_cursor.lnum = curwin->w_topline + p_window - 1;
2411 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
2412 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2413 continue;
2414 }
2415
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 /* Find the line at the top of the window that is going to be the
2417 * line at the bottom of the window. Make sure this results in
2418 * the same line as before doing CTRL-F. */
2419 loff.lnum = curwin->w_topline - 1;
2420#ifdef FEAT_DIFF
2421 loff.fill = diff_check_fill(curwin, loff.lnum + 1)
2422 - curwin->w_topfill;
2423#endif
2424 get_scroll_overlap(&loff, 1);
2425
2426 if (loff.lnum >= curbuf->b_ml.ml_line_count)
2427 {
2428 loff.lnum = curbuf->b_ml.ml_line_count;
2429#ifdef FEAT_DIFF
2430 loff.fill = 0;
2431 }
2432 else
2433 {
2434 botline_topline(&loff);
2435#endif
2436 }
2437 curwin->w_cursor.lnum = loff.lnum;
2438
2439 /* Find the line just above the new topline to get the right line
2440 * at the bottom of the window. */
2441 n = 0;
2442 while (n <= curwin->w_height && loff.lnum >= 1)
2443 {
2444 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002445 if (loff.height == MAXCOL)
2446 n = MAXCOL;
2447 else
2448 n += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 }
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002450 if (loff.lnum < 1) /* at begin of file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 {
2452 curwin->w_topline = 1;
2453#ifdef FEAT_DIFF
2454 max_topfill();
2455#endif
2456 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2457 }
2458 else
2459 {
2460 /* Go two lines forward again. */
2461#ifdef FEAT_DIFF
2462 topline_botline(&loff);
2463#endif
2464 botline_forw(&loff);
2465 botline_forw(&loff);
2466#ifdef FEAT_DIFF
2467 botline_topline(&loff);
2468#endif
2469#ifdef FEAT_FOLDING
2470 /* We're at the wrong end of a fold now. */
2471 (void)hasFolding(loff.lnum, &loff.lnum, NULL);
2472#endif
2473
2474 /* Always scroll at least one line. Avoid getting stuck on
2475 * very long lines. */
2476 if (loff.lnum >= curwin->w_topline
2477#ifdef FEAT_DIFF
2478 && (loff.lnum > curwin->w_topline
2479 || loff.fill >= curwin->w_topfill)
2480#endif
2481 )
2482 {
2483#ifdef FEAT_DIFF
2484 /* First try using the maximum number of filler lines. If
2485 * that's not enough, backup one line. */
2486 loff.fill = curwin->w_topfill;
2487 if (curwin->w_topfill < diff_check_fill(curwin,
2488 curwin->w_topline))
2489 max_topfill();
2490 if (curwin->w_topfill == loff.fill)
2491#endif
2492 {
2493 --curwin->w_topline;
2494#ifdef FEAT_DIFF
2495 curwin->w_topfill = 0;
2496#endif
2497 }
2498 comp_botline(curwin);
2499 curwin->w_cursor.lnum = curwin->w_botline - 1;
2500 curwin->w_valid &= ~(VALID_WCOL|VALID_CHEIGHT|
2501 VALID_WROW|VALID_CROW);
2502 }
2503 else
2504 {
2505 curwin->w_topline = loff.lnum;
2506#ifdef FEAT_DIFF
2507 curwin->w_topfill = loff.fill;
2508 check_topfill(curwin, FALSE);
2509#endif
2510 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2511 }
2512 }
2513 }
2514 }
2515#ifdef FEAT_FOLDING
2516 foldAdjustCursor();
2517#endif
2518 cursor_correct();
Bram Moolenaar7c626922005-02-07 22:01:03 +00002519 if (retval == OK)
2520 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 curwin->w_valid &= ~(VALID_WCOL|VALID_WROW|VALID_VIRTCOL);
2522
2523 /*
2524 * Avoid the screen jumping up and down when 'scrolloff' is non-zero.
2525 * But make sure we scroll at least one line (happens with mix of long
2526 * wrapping lines and non-wrapping line).
2527 */
2528 if (retval == OK && dir == FORWARD && check_top_offset())
2529 {
2530 scroll_cursor_top(1, FALSE);
2531 if (curwin->w_topline <= old_topline
2532 && old_topline < curbuf->b_ml.ml_line_count)
2533 {
2534 curwin->w_topline = old_topline + 1;
2535#ifdef FEAT_FOLDING
2536 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2537#endif
2538 }
2539 }
2540
2541 redraw_later(VALID);
2542 return retval;
2543}
2544
2545/*
2546 * Decide how much overlap to use for page-up or page-down scrolling.
2547 * This is symmetric, so that doing both keeps the same lines displayed.
2548 * Three lines are examined:
2549 *
2550 * before CTRL-F after CTRL-F / before CTRL-B
2551 * etc. l1
2552 * l1 last but one line ------------
2553 * l2 last text line l2 top text line
2554 * ------------- l3 second text line
2555 * l3 etc.
2556 */
2557 static void
2558get_scroll_overlap(lp, dir)
2559 lineoff_T *lp;
2560 int dir;
2561{
2562 int h1, h2, h3, h4;
2563 int min_height = curwin->w_height - 2;
2564 lineoff_T loff0, loff1, loff2;
2565
2566#ifdef FEAT_DIFF
2567 if (lp->fill > 0)
2568 lp->height = 1;
2569 else
2570 lp->height = plines_nofill(lp->lnum);
2571#else
2572 lp->height = plines(lp->lnum);
2573#endif
2574 h1 = lp->height;
2575 if (h1 > min_height)
2576 return; /* no overlap */
2577
2578 loff0 = *lp;
2579 if (dir > 0)
2580 botline_forw(lp);
2581 else
2582 topline_back(lp);
2583 h2 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002584 if (h2 == MAXCOL || h2 + h1 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 {
2586 *lp = loff0; /* no overlap */
2587 return;
2588 }
2589
2590 loff1 = *lp;
2591 if (dir > 0)
2592 botline_forw(lp);
2593 else
2594 topline_back(lp);
2595 h3 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002596 if (h3 == MAXCOL || h3 + h2 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 {
2598 *lp = loff0; /* no overlap */
2599 return;
2600 }
2601
2602 loff2 = *lp;
2603 if (dir > 0)
2604 botline_forw(lp);
2605 else
2606 topline_back(lp);
2607 h4 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002608 if (h4 == MAXCOL || h4 + h3 + h2 > min_height || h3 + h2 + h1 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 *lp = loff1; /* 1 line overlap */
2610 else
2611 *lp = loff2; /* 2 lines overlap */
2612 return;
2613}
2614
2615/* #define KEEP_SCREEN_LINE */
2616/*
2617 * Scroll 'scroll' lines up or down.
2618 */
2619 void
2620halfpage(flag, Prenum)
2621 int flag;
2622 linenr_T Prenum;
2623{
2624 long scrolled = 0;
2625 int i;
2626 int n;
2627 int room;
2628
2629 if (Prenum)
2630 curwin->w_p_scr = (Prenum > curwin->w_height) ?
2631 curwin->w_height : Prenum;
2632 n = (curwin->w_p_scr <= curwin->w_height) ?
2633 curwin->w_p_scr : curwin->w_height;
2634
2635 validate_botline();
2636 room = curwin->w_empty_rows;
2637#ifdef FEAT_DIFF
2638 room += curwin->w_filler_rows;
2639#endif
2640 if (flag)
2641 {
2642 /*
2643 * scroll the text up
2644 */
2645 while (n > 0 && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2646 {
2647#ifdef FEAT_DIFF
2648 if (curwin->w_topfill > 0)
2649 {
2650 i = 1;
2651 if (--n < 0 && scrolled > 0)
2652 break;
2653 --curwin->w_topfill;
2654 }
2655 else
2656#endif
2657 {
2658#ifdef FEAT_DIFF
2659 i = plines_nofill(curwin->w_topline);
2660#else
2661 i = plines(curwin->w_topline);
2662#endif
2663 n -= i;
2664 if (n < 0 && scrolled > 0)
2665 break;
2666#ifdef FEAT_FOLDING
2667 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
2668#endif
2669 ++curwin->w_topline;
2670#ifdef FEAT_DIFF
2671 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
2672#endif
2673
2674#ifndef KEEP_SCREEN_LINE
2675 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
2676 {
2677 ++curwin->w_cursor.lnum;
2678 curwin->w_valid &=
2679 ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
2680 }
2681#endif
2682 }
2683 curwin->w_valid &= ~(VALID_CROW|VALID_WROW);
2684 scrolled += i;
2685
2686 /*
2687 * Correct w_botline for changed w_topline.
2688 * Won't work when there are filler lines.
2689 */
2690#ifdef FEAT_DIFF
2691 if (curwin->w_p_diff)
2692 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
2693 else
2694#endif
2695 {
2696 room += i;
2697 do
2698 {
2699 i = plines(curwin->w_botline);
2700 if (i > room)
2701 break;
2702#ifdef FEAT_FOLDING
2703 (void)hasFolding(curwin->w_botline, NULL,
2704 &curwin->w_botline);
2705#endif
2706 ++curwin->w_botline;
2707 room -= i;
2708 } while (curwin->w_botline <= curbuf->b_ml.ml_line_count);
2709 }
2710 }
2711
2712#ifndef KEEP_SCREEN_LINE
2713 /*
2714 * When hit bottom of the file: move cursor down.
2715 */
2716 if (n > 0)
2717 {
2718# ifdef FEAT_FOLDING
2719 if (hasAnyFolding(curwin))
2720 {
2721 while (--n >= 0
2722 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
2723 {
2724 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2725 &curwin->w_cursor.lnum);
2726 ++curwin->w_cursor.lnum;
2727 }
2728 }
2729 else
2730# endif
2731 curwin->w_cursor.lnum += n;
2732 check_cursor_lnum();
2733 }
2734#else
2735 /* try to put the cursor in the same screen line */
2736 while ((curwin->w_cursor.lnum < curwin->w_topline || scrolled > 0)
2737 && curwin->w_cursor.lnum < curwin->w_botline - 1)
2738 {
2739 scrolled -= plines(curwin->w_cursor.lnum);
2740 if (scrolled < 0 && curwin->w_cursor.lnum >= curwin->w_topline)
2741 break;
2742# ifdef FEAT_FOLDING
2743 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2744 &curwin->w_cursor.lnum);
2745# endif
2746 ++curwin->w_cursor.lnum;
2747 }
2748#endif
2749 }
2750 else
2751 {
2752 /*
2753 * scroll the text down
2754 */
2755 while (n > 0 && curwin->w_topline > 1)
2756 {
2757#ifdef FEAT_DIFF
2758 if (curwin->w_topfill < diff_check_fill(curwin, curwin->w_topline))
2759 {
2760 i = 1;
2761 if (--n < 0 && scrolled > 0)
2762 break;
2763 ++curwin->w_topfill;
2764 }
2765 else
2766#endif
2767 {
2768#ifdef FEAT_DIFF
2769 i = plines_nofill(curwin->w_topline - 1);
2770#else
2771 i = plines(curwin->w_topline - 1);
2772#endif
2773 n -= i;
2774 if (n < 0 && scrolled > 0)
2775 break;
2776 --curwin->w_topline;
2777#ifdef FEAT_FOLDING
2778 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2779#endif
2780#ifdef FEAT_DIFF
2781 curwin->w_topfill = 0;
2782#endif
2783 }
2784 curwin->w_valid &= ~(VALID_CROW|VALID_WROW|
2785 VALID_BOTLINE|VALID_BOTLINE_AP);
2786 scrolled += i;
2787#ifndef KEEP_SCREEN_LINE
2788 if (curwin->w_cursor.lnum > 1)
2789 {
2790 --curwin->w_cursor.lnum;
2791 curwin->w_valid &= ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
2792 }
2793#endif
2794 }
2795#ifndef KEEP_SCREEN_LINE
2796 /*
2797 * When hit top of the file: move cursor up.
2798 */
2799 if (n > 0)
2800 {
2801 if (curwin->w_cursor.lnum <= (linenr_T)n)
2802 curwin->w_cursor.lnum = 1;
2803 else
2804# ifdef FEAT_FOLDING
2805 if (hasAnyFolding(curwin))
2806 {
2807 while (--n >= 0 && curwin->w_cursor.lnum > 1)
2808 {
2809 --curwin->w_cursor.lnum;
2810 (void)hasFolding(curwin->w_cursor.lnum,
2811 &curwin->w_cursor.lnum, NULL);
2812 }
2813 }
2814 else
2815# endif
2816 curwin->w_cursor.lnum -= n;
2817 }
2818#else
2819 /* try to put the cursor in the same screen line */
2820 scrolled += n; /* move cursor when topline is 1 */
2821 while (curwin->w_cursor.lnum > curwin->w_topline
2822 && (scrolled > 0 || curwin->w_cursor.lnum >= curwin->w_botline))
2823 {
2824 scrolled -= plines(curwin->w_cursor.lnum - 1);
2825 if (scrolled < 0 && curwin->w_cursor.lnum < curwin->w_botline)
2826 break;
2827 --curwin->w_cursor.lnum;
2828# ifdef FEAT_FOLDING
2829 foldAdjustCursor();
2830# endif
2831 }
2832#endif
2833 }
2834# ifdef FEAT_FOLDING
2835 /* Move cursor to first line of closed fold. */
2836 foldAdjustCursor();
2837# endif
2838#ifdef FEAT_DIFF
2839 check_topfill(curwin, !flag);
2840#endif
2841 cursor_correct();
2842 beginline(BL_SOL | BL_FIX);
2843 redraw_later(VALID);
2844}
Bram Moolenaar860cae12010-06-05 23:22:07 +02002845
2846#if defined(FEAT_CURSORBIND) || defined(PROTO)
2847 void
2848do_check_cursorbind()
2849{
2850 linenr_T line = curwin->w_cursor.lnum;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01002851 colnr_T col = curwin->w_cursor.col;
2852# ifdef FEAT_VIRTUALEDIT
2853 colnr_T coladd = curwin->w_cursor.coladd;
2854# endif
Bram Moolenaar524780d2012-03-28 14:19:50 +02002855 colnr_T curswant = curwin->w_curswant;
2856 int set_curswant = curwin->w_set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002857 win_T *old_curwin = curwin;
2858 buf_T *old_curbuf = curbuf;
Bram Moolenaar61452852011-02-01 18:01:11 +01002859 int restart_edit_save;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002860 int old_VIsual_select = VIsual_select;
2861 int old_VIsual_active = VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002862
2863 /*
2864 * loop through the cursorbound windows
2865 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02002866 VIsual_select = VIsual_active = 0;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002867 for (curwin = firstwin; curwin; curwin = curwin->w_next)
2868 {
2869 curbuf = curwin->w_buffer;
2870 /* skip original window and windows with 'noscrollbind' */
2871 if (curwin != old_curwin && curwin->w_p_crb)
2872 {
2873# ifdef FEAT_DIFF
2874 if (curwin->w_p_diff)
2875 curwin->w_cursor.lnum
2876 = diff_get_corresponding_line(old_curbuf,
2877 line,
2878 curbuf,
2879 curwin->w_cursor.lnum);
2880 else
2881# endif
2882 curwin->w_cursor.lnum = line;
2883 curwin->w_cursor.col = col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01002884# ifdef FEAT_VIRTUALEDIT
2885 curwin->w_cursor.coladd = coladd;
2886# endif
Bram Moolenaar524780d2012-03-28 14:19:50 +02002887 curwin->w_curswant = curswant;
2888 curwin->w_set_curswant = set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002889
Bram Moolenaar61452852011-02-01 18:01:11 +01002890 /* Make sure the cursor is in a valid position. Temporarily set
2891 * "restart_edit" to allow the cursor to be beyond the EOL. */
2892 restart_edit_save = restart_edit;
2893 restart_edit = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002894 check_cursor();
Bram Moolenaar61452852011-02-01 18:01:11 +01002895 restart_edit = restart_edit_save;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002896# ifdef FEAT_MBYTE
2897 /* Correct cursor for multi-byte character. */
2898 if (has_mbyte)
2899 mb_adjust_cursor();
2900# endif
Bram Moolenaar860cae12010-06-05 23:22:07 +02002901 redraw_later(VALID);
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01002902
2903 /* Only scroll when 'scrollbind' hasn't done this. */
2904 if (!curwin->w_p_scb)
2905 update_topline();
Bram Moolenaar860cae12010-06-05 23:22:07 +02002906# ifdef FEAT_WINDOWS
2907 curwin->w_redr_status = TRUE;
2908# endif
2909 }
2910 }
2911
2912 /*
2913 * reset current-window
2914 */
Bram Moolenaar860cae12010-06-05 23:22:07 +02002915 VIsual_select = old_VIsual_select;
2916 VIsual_active = old_VIsual_active;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002917 curwin = old_curwin;
2918 curbuf = old_curbuf;
2919}
2920#endif /* FEAT_CURSORBIND */