blob: 3a75ce36a4f22b431761e1f0f6cb459a931eda03 [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 Moolenaar12a0f222014-02-11 15:47:46 +01002104 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105
2106 loff.lnum = boff.lnum = curwin->w_cursor.lnum;
2107#ifdef FEAT_FOLDING
2108 (void)hasFolding(loff.lnum, &loff.lnum, &boff.lnum);
2109#endif
2110#ifdef FEAT_DIFF
2111 used = plines_nofill(loff.lnum);
2112 loff.fill = 0;
2113 boff.fill = 0;
2114#else
2115 used = plines(loff.lnum);
2116#endif
2117 topline = loff.lnum;
2118 while (topline > 1)
2119 {
2120 if (below <= above) /* add a line below the cursor first */
2121 {
2122 if (boff.lnum < curbuf->b_ml.ml_line_count)
2123 {
2124 botline_forw(&boff);
2125 used += boff.height;
2126 if (used > curwin->w_height)
2127 break;
2128 below += boff.height;
2129 }
2130 else
2131 {
2132 ++below; /* count a "~" line */
2133 if (atend)
2134 ++used;
2135 }
2136 }
2137
2138 if (below > above) /* add a line above the cursor */
2139 {
2140 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002141 if (loff.height == MAXCOL)
2142 used = MAXCOL;
2143 else
2144 used += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 if (used > curwin->w_height)
2146 break;
2147 above += loff.height;
2148 topline = loff.lnum;
2149#ifdef FEAT_DIFF
2150 topfill = loff.fill;
2151#endif
2152 }
2153 }
2154#ifdef FEAT_FOLDING
2155 if (!hasFolding(topline, &curwin->w_topline, NULL))
2156#endif
2157 curwin->w_topline = topline;
2158#ifdef FEAT_DIFF
2159 curwin->w_topfill = topfill;
Bram Moolenaar12a0f222014-02-11 15:47:46 +01002160 if (old_topline > curwin->w_topline + curwin->w_height)
2161 curwin->w_botfill = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 check_topfill(curwin, FALSE);
2163#endif
2164 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2165 curwin->w_valid |= VALID_TOPLINE;
2166}
2167
2168/*
2169 * Correct the cursor position so that it is in a part of the screen at least
2170 * 'so' lines from the top and bottom, if possible.
2171 * If not possible, put it at the same position as scroll_cursor_halfway().
2172 * When called topline must be valid!
2173 */
2174 void
2175cursor_correct()
2176{
2177 int above = 0; /* screen lines above topline */
2178 linenr_T topline;
2179 int below = 0; /* screen lines below botline */
2180 linenr_T botline;
2181 int above_wanted, below_wanted;
2182 linenr_T cln; /* Cursor Line Number */
2183 int max_off;
2184
2185 /*
2186 * How many lines we would like to have above/below the cursor depends on
2187 * whether the first/last line of the file is on screen.
2188 */
2189 above_wanted = p_so;
2190 below_wanted = p_so;
2191#ifdef FEAT_MOUSE
Bram Moolenaar9964e462007-05-05 17:54:07 +00002192 if (mouse_dragging > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 {
2194 above_wanted = mouse_dragging - 1;
2195 below_wanted = mouse_dragging - 1;
2196 }
2197#endif
2198 if (curwin->w_topline == 1)
2199 {
2200 above_wanted = 0;
2201 max_off = curwin->w_height / 2;
2202 if (below_wanted > max_off)
2203 below_wanted = max_off;
2204 }
2205 validate_botline();
2206 if (curwin->w_botline == curbuf->b_ml.ml_line_count + 1
2207#ifdef FEAT_MOUSE
Bram Moolenaar9964e462007-05-05 17:54:07 +00002208 && mouse_dragging == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209#endif
2210 )
2211 {
2212 below_wanted = 0;
2213 max_off = (curwin->w_height - 1) / 2;
2214 if (above_wanted > max_off)
2215 above_wanted = max_off;
2216 }
2217
2218 /*
2219 * If there are sufficient file-lines above and below the cursor, we can
2220 * return now.
2221 */
2222 cln = curwin->w_cursor.lnum;
2223 if (cln >= curwin->w_topline + above_wanted
2224 && cln < curwin->w_botline - below_wanted
2225#ifdef FEAT_FOLDING
2226 && !hasAnyFolding(curwin)
2227#endif
2228 )
2229 return;
2230
2231 /*
2232 * Narrow down the area where the cursor can be put by taking lines from
2233 * the top and the bottom until:
2234 * - the desired context lines are found
2235 * - the lines from the top is past the lines from the bottom
2236 */
2237 topline = curwin->w_topline;
2238 botline = curwin->w_botline - 1;
2239#ifdef FEAT_DIFF
2240 /* count filler lines as context */
2241 above = curwin->w_topfill;
2242 below = curwin->w_filler_rows;
2243#endif
2244 while ((above < above_wanted || below < below_wanted) && topline < botline)
2245 {
2246 if (below < below_wanted && (below <= above || above >= above_wanted))
2247 {
2248#ifdef FEAT_FOLDING
2249 if (hasFolding(botline, &botline, NULL))
2250 ++below;
2251 else
2252#endif
2253 below += plines(botline);
2254 --botline;
2255 }
2256 if (above < above_wanted && (above < below || below >= below_wanted))
2257 {
2258#ifdef FEAT_FOLDING
2259 if (hasFolding(topline, NULL, &topline))
2260 ++above;
2261 else
2262#endif
2263#ifndef FEAT_DIFF
2264 above += plines(topline);
2265#else
2266 above += plines_nofill(topline);
2267
2268 /* Count filler lines below this line as context. */
2269 if (topline < botline)
2270 above += diff_check_fill(curwin, topline + 1);
2271#endif
2272 ++topline;
2273 }
2274 }
2275 if (topline == botline || botline == 0)
2276 curwin->w_cursor.lnum = topline;
2277 else if (topline > botline)
2278 curwin->w_cursor.lnum = botline;
2279 else
2280 {
2281 if (cln < topline && curwin->w_topline > 1)
2282 {
2283 curwin->w_cursor.lnum = topline;
2284 curwin->w_valid &=
2285 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2286 }
2287 if (cln > botline && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2288 {
2289 curwin->w_cursor.lnum = botline;
2290 curwin->w_valid &=
2291 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW);
2292 }
2293 }
2294 curwin->w_valid |= VALID_TOPLINE;
2295}
2296
2297static void get_scroll_overlap __ARGS((lineoff_T *lp, int dir));
2298
2299/*
2300 * move screen 'count' pages up or down and update screen
2301 *
2302 * return FAIL for failure, OK otherwise
2303 */
2304 int
2305onepage(dir, count)
2306 int dir;
2307 long count;
2308{
2309 long n;
2310 int retval = OK;
2311 lineoff_T loff;
2312 linenr_T old_topline = curwin->w_topline;
2313
2314 if (curbuf->b_ml.ml_line_count == 1) /* nothing to do */
2315 {
2316 beep_flush();
2317 return FAIL;
2318 }
2319
2320 for ( ; count > 0; --count)
2321 {
2322 validate_botline();
2323 /*
2324 * It's an error to move a page up when the first line is already on
2325 * the screen. It's an error to move a page down when the last line
2326 * is on the screen and the topline is 'scrolloff' lines from the
2327 * last line.
2328 */
2329 if (dir == FORWARD
2330 ? ((curwin->w_topline >= curbuf->b_ml.ml_line_count - p_so)
2331 && curwin->w_botline > curbuf->b_ml.ml_line_count)
2332 : (curwin->w_topline == 1
2333#ifdef FEAT_DIFF
2334 && curwin->w_topfill ==
2335 diff_check_fill(curwin, curwin->w_topline)
2336#endif
2337 ))
2338 {
2339 beep_flush();
2340 retval = FAIL;
2341 break;
2342 }
2343
2344#ifdef FEAT_DIFF
2345 loff.fill = 0;
2346#endif
2347 if (dir == FORWARD)
2348 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002349 if (firstwin == lastwin && p_window > 0 && p_window < Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002351 /* Vi compatible scrolling */
2352 if (p_window <= 2)
2353 ++curwin->w_topline;
2354 else
2355 curwin->w_topline += p_window - 2;
2356 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
2357 curwin->w_topline = curbuf->b_ml.ml_line_count;
2358 curwin->w_cursor.lnum = curwin->w_topline;
2359 }
2360 else if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2361 {
2362 /* at end of file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 curwin->w_topline = curbuf->b_ml.ml_line_count;
2364#ifdef FEAT_DIFF
2365 curwin->w_topfill = 0;
2366#endif
2367 curwin->w_valid &= ~(VALID_WROW|VALID_CROW);
2368 }
2369 else
2370 {
2371 /* For the overlap, start with the line just below the window
2372 * and go upwards. */
2373 loff.lnum = curwin->w_botline;
2374#ifdef FEAT_DIFF
2375 loff.fill = diff_check_fill(curwin, loff.lnum)
2376 - curwin->w_filler_rows;
2377#endif
2378 get_scroll_overlap(&loff, -1);
2379 curwin->w_topline = loff.lnum;
2380#ifdef FEAT_DIFF
2381 curwin->w_topfill = loff.fill;
2382 check_topfill(curwin, FALSE);
2383#endif
2384 curwin->w_cursor.lnum = curwin->w_topline;
2385 curwin->w_valid &= ~(VALID_WCOL|VALID_CHEIGHT|VALID_WROW|
2386 VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2387 }
2388 }
2389 else /* dir == BACKWARDS */
2390 {
2391#ifdef FEAT_DIFF
2392 if (curwin->w_topline == 1)
2393 {
2394 /* Include max number of filler lines */
2395 max_topfill();
2396 continue;
2397 }
2398#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002399 if (firstwin == lastwin && p_window > 0 && p_window < Rows - 1)
2400 {
2401 /* Vi compatible scrolling (sort of) */
2402 if (p_window <= 2)
2403 --curwin->w_topline;
2404 else
2405 curwin->w_topline -= p_window - 2;
2406 if (curwin->w_topline < 1)
2407 curwin->w_topline = 1;
2408 curwin->w_cursor.lnum = curwin->w_topline + p_window - 1;
2409 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
2410 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2411 continue;
2412 }
2413
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 /* Find the line at the top of the window that is going to be the
2415 * line at the bottom of the window. Make sure this results in
2416 * the same line as before doing CTRL-F. */
2417 loff.lnum = curwin->w_topline - 1;
2418#ifdef FEAT_DIFF
2419 loff.fill = diff_check_fill(curwin, loff.lnum + 1)
2420 - curwin->w_topfill;
2421#endif
2422 get_scroll_overlap(&loff, 1);
2423
2424 if (loff.lnum >= curbuf->b_ml.ml_line_count)
2425 {
2426 loff.lnum = curbuf->b_ml.ml_line_count;
2427#ifdef FEAT_DIFF
2428 loff.fill = 0;
2429 }
2430 else
2431 {
2432 botline_topline(&loff);
2433#endif
2434 }
2435 curwin->w_cursor.lnum = loff.lnum;
2436
2437 /* Find the line just above the new topline to get the right line
2438 * at the bottom of the window. */
2439 n = 0;
2440 while (n <= curwin->w_height && loff.lnum >= 1)
2441 {
2442 topline_back(&loff);
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002443 if (loff.height == MAXCOL)
2444 n = MAXCOL;
2445 else
2446 n += loff.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 }
Bram Moolenaarbacd9da2010-02-17 18:20:37 +01002448 if (loff.lnum < 1) /* at begin of file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 {
2450 curwin->w_topline = 1;
2451#ifdef FEAT_DIFF
2452 max_topfill();
2453#endif
2454 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2455 }
2456 else
2457 {
2458 /* Go two lines forward again. */
2459#ifdef FEAT_DIFF
2460 topline_botline(&loff);
2461#endif
2462 botline_forw(&loff);
2463 botline_forw(&loff);
2464#ifdef FEAT_DIFF
2465 botline_topline(&loff);
2466#endif
2467#ifdef FEAT_FOLDING
2468 /* We're at the wrong end of a fold now. */
2469 (void)hasFolding(loff.lnum, &loff.lnum, NULL);
2470#endif
2471
2472 /* Always scroll at least one line. Avoid getting stuck on
2473 * very long lines. */
2474 if (loff.lnum >= curwin->w_topline
2475#ifdef FEAT_DIFF
2476 && (loff.lnum > curwin->w_topline
2477 || loff.fill >= curwin->w_topfill)
2478#endif
2479 )
2480 {
2481#ifdef FEAT_DIFF
2482 /* First try using the maximum number of filler lines. If
2483 * that's not enough, backup one line. */
2484 loff.fill = curwin->w_topfill;
2485 if (curwin->w_topfill < diff_check_fill(curwin,
2486 curwin->w_topline))
2487 max_topfill();
2488 if (curwin->w_topfill == loff.fill)
2489#endif
2490 {
2491 --curwin->w_topline;
2492#ifdef FEAT_DIFF
2493 curwin->w_topfill = 0;
2494#endif
2495 }
2496 comp_botline(curwin);
2497 curwin->w_cursor.lnum = curwin->w_botline - 1;
2498 curwin->w_valid &= ~(VALID_WCOL|VALID_CHEIGHT|
2499 VALID_WROW|VALID_CROW);
2500 }
2501 else
2502 {
2503 curwin->w_topline = loff.lnum;
2504#ifdef FEAT_DIFF
2505 curwin->w_topfill = loff.fill;
2506 check_topfill(curwin, FALSE);
2507#endif
2508 curwin->w_valid &= ~(VALID_WROW|VALID_CROW|VALID_BOTLINE);
2509 }
2510 }
2511 }
2512 }
2513#ifdef FEAT_FOLDING
2514 foldAdjustCursor();
2515#endif
2516 cursor_correct();
Bram Moolenaar7c626922005-02-07 22:01:03 +00002517 if (retval == OK)
2518 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 curwin->w_valid &= ~(VALID_WCOL|VALID_WROW|VALID_VIRTCOL);
2520
2521 /*
2522 * Avoid the screen jumping up and down when 'scrolloff' is non-zero.
2523 * But make sure we scroll at least one line (happens with mix of long
2524 * wrapping lines and non-wrapping line).
2525 */
2526 if (retval == OK && dir == FORWARD && check_top_offset())
2527 {
2528 scroll_cursor_top(1, FALSE);
2529 if (curwin->w_topline <= old_topline
2530 && old_topline < curbuf->b_ml.ml_line_count)
2531 {
2532 curwin->w_topline = old_topline + 1;
2533#ifdef FEAT_FOLDING
2534 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2535#endif
2536 }
2537 }
2538
2539 redraw_later(VALID);
2540 return retval;
2541}
2542
2543/*
2544 * Decide how much overlap to use for page-up or page-down scrolling.
2545 * This is symmetric, so that doing both keeps the same lines displayed.
2546 * Three lines are examined:
2547 *
2548 * before CTRL-F after CTRL-F / before CTRL-B
2549 * etc. l1
2550 * l1 last but one line ------------
2551 * l2 last text line l2 top text line
2552 * ------------- l3 second text line
2553 * l3 etc.
2554 */
2555 static void
2556get_scroll_overlap(lp, dir)
2557 lineoff_T *lp;
2558 int dir;
2559{
2560 int h1, h2, h3, h4;
2561 int min_height = curwin->w_height - 2;
2562 lineoff_T loff0, loff1, loff2;
2563
2564#ifdef FEAT_DIFF
2565 if (lp->fill > 0)
2566 lp->height = 1;
2567 else
2568 lp->height = plines_nofill(lp->lnum);
2569#else
2570 lp->height = plines(lp->lnum);
2571#endif
2572 h1 = lp->height;
2573 if (h1 > min_height)
2574 return; /* no overlap */
2575
2576 loff0 = *lp;
2577 if (dir > 0)
2578 botline_forw(lp);
2579 else
2580 topline_back(lp);
2581 h2 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002582 if (h2 == MAXCOL || h2 + h1 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 {
2584 *lp = loff0; /* no overlap */
2585 return;
2586 }
2587
2588 loff1 = *lp;
2589 if (dir > 0)
2590 botline_forw(lp);
2591 else
2592 topline_back(lp);
2593 h3 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002594 if (h3 == MAXCOL || h3 + h2 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 {
2596 *lp = loff0; /* no overlap */
2597 return;
2598 }
2599
2600 loff2 = *lp;
2601 if (dir > 0)
2602 botline_forw(lp);
2603 else
2604 topline_back(lp);
2605 h4 = lp->height;
Bram Moolenaarf4f19562012-11-28 18:22:11 +01002606 if (h4 == MAXCOL || h4 + h3 + h2 > min_height || h3 + h2 + h1 > min_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 *lp = loff1; /* 1 line overlap */
2608 else
2609 *lp = loff2; /* 2 lines overlap */
2610 return;
2611}
2612
2613/* #define KEEP_SCREEN_LINE */
2614/*
2615 * Scroll 'scroll' lines up or down.
2616 */
2617 void
2618halfpage(flag, Prenum)
2619 int flag;
2620 linenr_T Prenum;
2621{
2622 long scrolled = 0;
2623 int i;
2624 int n;
2625 int room;
2626
2627 if (Prenum)
2628 curwin->w_p_scr = (Prenum > curwin->w_height) ?
2629 curwin->w_height : Prenum;
2630 n = (curwin->w_p_scr <= curwin->w_height) ?
2631 curwin->w_p_scr : curwin->w_height;
2632
2633 validate_botline();
2634 room = curwin->w_empty_rows;
2635#ifdef FEAT_DIFF
2636 room += curwin->w_filler_rows;
2637#endif
2638 if (flag)
2639 {
2640 /*
2641 * scroll the text up
2642 */
2643 while (n > 0 && curwin->w_botline <= curbuf->b_ml.ml_line_count)
2644 {
2645#ifdef FEAT_DIFF
2646 if (curwin->w_topfill > 0)
2647 {
2648 i = 1;
2649 if (--n < 0 && scrolled > 0)
2650 break;
2651 --curwin->w_topfill;
2652 }
2653 else
2654#endif
2655 {
2656#ifdef FEAT_DIFF
2657 i = plines_nofill(curwin->w_topline);
2658#else
2659 i = plines(curwin->w_topline);
2660#endif
2661 n -= i;
2662 if (n < 0 && scrolled > 0)
2663 break;
2664#ifdef FEAT_FOLDING
2665 (void)hasFolding(curwin->w_topline, NULL, &curwin->w_topline);
2666#endif
2667 ++curwin->w_topline;
2668#ifdef FEAT_DIFF
2669 curwin->w_topfill = diff_check_fill(curwin, curwin->w_topline);
2670#endif
2671
2672#ifndef KEEP_SCREEN_LINE
2673 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
2674 {
2675 ++curwin->w_cursor.lnum;
2676 curwin->w_valid &=
2677 ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
2678 }
2679#endif
2680 }
2681 curwin->w_valid &= ~(VALID_CROW|VALID_WROW);
2682 scrolled += i;
2683
2684 /*
2685 * Correct w_botline for changed w_topline.
2686 * Won't work when there are filler lines.
2687 */
2688#ifdef FEAT_DIFF
2689 if (curwin->w_p_diff)
2690 curwin->w_valid &= ~(VALID_BOTLINE|VALID_BOTLINE_AP);
2691 else
2692#endif
2693 {
2694 room += i;
2695 do
2696 {
2697 i = plines(curwin->w_botline);
2698 if (i > room)
2699 break;
2700#ifdef FEAT_FOLDING
2701 (void)hasFolding(curwin->w_botline, NULL,
2702 &curwin->w_botline);
2703#endif
2704 ++curwin->w_botline;
2705 room -= i;
2706 } while (curwin->w_botline <= curbuf->b_ml.ml_line_count);
2707 }
2708 }
2709
2710#ifndef KEEP_SCREEN_LINE
2711 /*
2712 * When hit bottom of the file: move cursor down.
2713 */
2714 if (n > 0)
2715 {
2716# ifdef FEAT_FOLDING
2717 if (hasAnyFolding(curwin))
2718 {
2719 while (--n >= 0
2720 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
2721 {
2722 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2723 &curwin->w_cursor.lnum);
2724 ++curwin->w_cursor.lnum;
2725 }
2726 }
2727 else
2728# endif
2729 curwin->w_cursor.lnum += n;
2730 check_cursor_lnum();
2731 }
2732#else
2733 /* try to put the cursor in the same screen line */
2734 while ((curwin->w_cursor.lnum < curwin->w_topline || scrolled > 0)
2735 && curwin->w_cursor.lnum < curwin->w_botline - 1)
2736 {
2737 scrolled -= plines(curwin->w_cursor.lnum);
2738 if (scrolled < 0 && curwin->w_cursor.lnum >= curwin->w_topline)
2739 break;
2740# ifdef FEAT_FOLDING
2741 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2742 &curwin->w_cursor.lnum);
2743# endif
2744 ++curwin->w_cursor.lnum;
2745 }
2746#endif
2747 }
2748 else
2749 {
2750 /*
2751 * scroll the text down
2752 */
2753 while (n > 0 && curwin->w_topline > 1)
2754 {
2755#ifdef FEAT_DIFF
2756 if (curwin->w_topfill < diff_check_fill(curwin, curwin->w_topline))
2757 {
2758 i = 1;
2759 if (--n < 0 && scrolled > 0)
2760 break;
2761 ++curwin->w_topfill;
2762 }
2763 else
2764#endif
2765 {
2766#ifdef FEAT_DIFF
2767 i = plines_nofill(curwin->w_topline - 1);
2768#else
2769 i = plines(curwin->w_topline - 1);
2770#endif
2771 n -= i;
2772 if (n < 0 && scrolled > 0)
2773 break;
2774 --curwin->w_topline;
2775#ifdef FEAT_FOLDING
2776 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2777#endif
2778#ifdef FEAT_DIFF
2779 curwin->w_topfill = 0;
2780#endif
2781 }
2782 curwin->w_valid &= ~(VALID_CROW|VALID_WROW|
2783 VALID_BOTLINE|VALID_BOTLINE_AP);
2784 scrolled += i;
2785#ifndef KEEP_SCREEN_LINE
2786 if (curwin->w_cursor.lnum > 1)
2787 {
2788 --curwin->w_cursor.lnum;
2789 curwin->w_valid &= ~(VALID_VIRTCOL|VALID_CHEIGHT|VALID_WCOL);
2790 }
2791#endif
2792 }
2793#ifndef KEEP_SCREEN_LINE
2794 /*
2795 * When hit top of the file: move cursor up.
2796 */
2797 if (n > 0)
2798 {
2799 if (curwin->w_cursor.lnum <= (linenr_T)n)
2800 curwin->w_cursor.lnum = 1;
2801 else
2802# ifdef FEAT_FOLDING
2803 if (hasAnyFolding(curwin))
2804 {
2805 while (--n >= 0 && curwin->w_cursor.lnum > 1)
2806 {
2807 --curwin->w_cursor.lnum;
2808 (void)hasFolding(curwin->w_cursor.lnum,
2809 &curwin->w_cursor.lnum, NULL);
2810 }
2811 }
2812 else
2813# endif
2814 curwin->w_cursor.lnum -= n;
2815 }
2816#else
2817 /* try to put the cursor in the same screen line */
2818 scrolled += n; /* move cursor when topline is 1 */
2819 while (curwin->w_cursor.lnum > curwin->w_topline
2820 && (scrolled > 0 || curwin->w_cursor.lnum >= curwin->w_botline))
2821 {
2822 scrolled -= plines(curwin->w_cursor.lnum - 1);
2823 if (scrolled < 0 && curwin->w_cursor.lnum < curwin->w_botline)
2824 break;
2825 --curwin->w_cursor.lnum;
2826# ifdef FEAT_FOLDING
2827 foldAdjustCursor();
2828# endif
2829 }
2830#endif
2831 }
2832# ifdef FEAT_FOLDING
2833 /* Move cursor to first line of closed fold. */
2834 foldAdjustCursor();
2835# endif
2836#ifdef FEAT_DIFF
2837 check_topfill(curwin, !flag);
2838#endif
2839 cursor_correct();
2840 beginline(BL_SOL | BL_FIX);
2841 redraw_later(VALID);
2842}
Bram Moolenaar860cae12010-06-05 23:22:07 +02002843
2844#if defined(FEAT_CURSORBIND) || defined(PROTO)
2845 void
2846do_check_cursorbind()
2847{
2848 linenr_T line = curwin->w_cursor.lnum;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01002849 colnr_T col = curwin->w_cursor.col;
2850# ifdef FEAT_VIRTUALEDIT
2851 colnr_T coladd = curwin->w_cursor.coladd;
2852# endif
Bram Moolenaar524780d2012-03-28 14:19:50 +02002853 colnr_T curswant = curwin->w_curswant;
2854 int set_curswant = curwin->w_set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002855 win_T *old_curwin = curwin;
2856 buf_T *old_curbuf = curbuf;
Bram Moolenaar61452852011-02-01 18:01:11 +01002857 int restart_edit_save;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002858# ifdef FEAT_VISUAL
2859 int old_VIsual_select = VIsual_select;
2860 int old_VIsual_active = VIsual_active;
2861# endif
2862
2863 /*
2864 * loop through the cursorbound windows
2865 */
2866# ifdef FEAT_VISUAL
2867 VIsual_select = VIsual_active = 0;
2868# endif
2869 for (curwin = firstwin; curwin; curwin = curwin->w_next)
2870 {
2871 curbuf = curwin->w_buffer;
2872 /* skip original window and windows with 'noscrollbind' */
2873 if (curwin != old_curwin && curwin->w_p_crb)
2874 {
2875# ifdef FEAT_DIFF
2876 if (curwin->w_p_diff)
2877 curwin->w_cursor.lnum
2878 = diff_get_corresponding_line(old_curbuf,
2879 line,
2880 curbuf,
2881 curwin->w_cursor.lnum);
2882 else
2883# endif
2884 curwin->w_cursor.lnum = line;
2885 curwin->w_cursor.col = col;
Bram Moolenaar1ea69b72012-03-16 19:24:26 +01002886# ifdef FEAT_VIRTUALEDIT
2887 curwin->w_cursor.coladd = coladd;
2888# endif
Bram Moolenaar524780d2012-03-28 14:19:50 +02002889 curwin->w_curswant = curswant;
2890 curwin->w_set_curswant = set_curswant;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002891
Bram Moolenaar61452852011-02-01 18:01:11 +01002892 /* Make sure the cursor is in a valid position. Temporarily set
2893 * "restart_edit" to allow the cursor to be beyond the EOL. */
2894 restart_edit_save = restart_edit;
2895 restart_edit = TRUE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002896 check_cursor();
Bram Moolenaar61452852011-02-01 18:01:11 +01002897 restart_edit = restart_edit_save;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002898# ifdef FEAT_MBYTE
2899 /* Correct cursor for multi-byte character. */
2900 if (has_mbyte)
2901 mb_adjust_cursor();
2902# endif
Bram Moolenaar860cae12010-06-05 23:22:07 +02002903 redraw_later(VALID);
Bram Moolenaarf3d419d2011-01-22 21:05:07 +01002904
2905 /* Only scroll when 'scrollbind' hasn't done this. */
2906 if (!curwin->w_p_scb)
2907 update_topline();
Bram Moolenaar860cae12010-06-05 23:22:07 +02002908# ifdef FEAT_WINDOWS
2909 curwin->w_redr_status = TRUE;
2910# endif
2911 }
2912 }
2913
2914 /*
2915 * reset current-window
2916 */
2917# ifdef FEAT_VISUAL
2918 VIsual_select = old_VIsual_select;
2919 VIsual_active = old_VIsual_active;
2920# endif
2921 curwin = old_curwin;
2922 curbuf = old_curbuf;
2923}
2924#endif /* FEAT_CURSORBIND */