1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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.
10 * move.c: Functions for moving the cursor and scrolling text.
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
15 * 2. Scroll the text, the cursor is moved into the text visible in the
17 * The 'scrolloff' option makes this a bit complicated.
22 static void comp_botline
__ARGS((win_T
*wp
));
23 static int scrolljump_value
__ARGS((void));
24 static int check_top_offset
__ARGS((void));
25 static void curs_rows
__ARGS((win_T
*wp
, int do_botline
));
26 static void validate_botline_win
__ARGS((win_T
*wp
));
27 static void validate_cheight
__ARGS((void));
31 linenr_T lnum
; /* line number */
33 int fill
; /* filler lines */
35 int height
; /* height of added line */
38 static void topline_back
__ARGS((lineoff_T
*lp
));
39 static void botline_forw
__ARGS((lineoff_T
*lp
));
41 static void botline_topline
__ARGS((lineoff_T
*lp
));
42 static void topline_botline
__ARGS((lineoff_T
*lp
));
43 static void max_topfill
__ARGS((void));
47 * Compute wp->w_botline for the current wp->w_topline. Can be called after
48 * wp->w_topline changed.
63 * If w_cline_row is valid, start there.
64 * Otherwise have to start at w_topline.
66 check_cursor_moved(wp
);
67 if (wp
->w_valid
& VALID_CROW
)
69 lnum
= wp
->w_cursor
.lnum
;
70 done
= wp
->w_cline_row
;
78 for ( ; lnum
<= wp
->w_buffer
->b_ml
.ml_line_count
; ++lnum
)
83 if (hasFoldingWin(wp
, lnum
, NULL
, &last
, TRUE
, NULL
))
91 if (lnum
== wp
->w_topline
)
92 n
= plines_win_nofill(wp
, lnum
, TRUE
) + wp
->w_topfill
;
95 n
= plines_win(wp
, lnum
, TRUE
);
98 lnum
<= wp
->w_cursor
.lnum
&& last
>= wp
->w_cursor
.lnum
100 lnum
== wp
->w_cursor
.lnum
104 wp
->w_cline_row
= done
;
105 wp
->w_cline_height
= n
;
107 wp
->w_cline_folded
= folded
;
109 wp
->w_valid
|= (VALID_CROW
|VALID_CHEIGHT
);
111 if (done
+ n
> wp
->w_height
)
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
;
123 set_empty_rows(wp
, done
);
127 * Update curwin->w_topline and redraw if necessary.
128 * Used to update the screen before printing a message.
131 update_topline_redraw()
139 * Update curwin->w_topline to move the cursor onto the screen.
147 linenr_T old_topline
;
154 int check_topline
= FALSE
;
155 int check_botline
= FALSE
;
160 if (!screen_valid(TRUE
))
163 check_cursor_moved(curwin
);
164 if (curwin
->w_valid
& VALID_TOPLINE
)
168 /* When dragging with the mouse, don't scroll that quickly */
169 if (mouse_dragging
> 0)
170 p_so
= mouse_dragging
- 1;
173 old_topline
= curwin
->w_topline
;
175 old_topfill
= curwin
->w_topfill
;
179 * If the buffer is empty, always set topline to 1.
181 if (bufempty()) /* special case - file is empty */
183 if (curwin
->w_topline
!= 1)
184 redraw_later(NOT_VALID
);
185 curwin
->w_topline
= 1;
186 curwin
->w_botline
= 2;
187 curwin
->w_valid
|= VALID_BOTLINE
|VALID_BOTLINE_AP
;
188 #ifdef FEAT_SCROLLBIND
189 curwin
->w_scbind_pos
= 1;
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.
199 if (curwin
->w_topline
> 1)
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
;
210 /* Check if there are more filler lines than allowed. */
211 if (!check_topline
&& curwin
->w_topfill
> diff_check_fill(curwin
,
213 check_topline
= TRUE
;
218 halfheight
= curwin
->w_height
/ 2 - 1;
223 if (hasAnyFolding(curwin
))
225 /* Count the number of logical lines between the cursor and
226 * topline + p_so (approximation of how much will be
229 for (lnum
= curwin
->w_cursor
.lnum
;
230 lnum
< curwin
->w_topline
+ p_so
; ++lnum
)
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
)
236 (void)hasFolding(lnum
, NULL
, &lnum
);
241 n
= curwin
->w_topline
+ p_so
- curwin
->w_cursor
.lnum
;
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. */
247 scroll_cursor_halfway(FALSE
);
250 scroll_cursor_top(scrolljump_value(), FALSE
);
251 check_botline
= TRUE
;
258 /* Make sure topline is the first line of a fold. */
259 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
261 check_botline
= TRUE
;
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.
275 if (!(curwin
->w_valid
& VALID_BOTLINE_AP
))
278 if (curwin
->w_botline
<= curbuf
->b_ml
.ml_line_count
)
280 if (curwin
->w_cursor
.lnum
< curwin
->w_botline
)
282 if (((long)curwin
->w_cursor
.lnum
283 >= (long)curwin
->w_botline
- p_so
285 || hasAnyFolding(curwin
)
291 /* Cursor is (a few lines) above botline, check if there are
292 * 'scrolloff' window lines below the cursor. If not, need to
294 n
= curwin
->w_empty_rows
;
295 loff
.lnum
= curwin
->w_cursor
.lnum
;
297 /* In a fold go to its last line. */
298 (void)hasFolding(loff
.lnum
, NULL
, &loff
.lnum
);
302 n
+= curwin
->w_filler_rows
;
305 while (loff
.lnum
< curwin
->w_botline
307 && (loff
.lnum
+ 1 < curwin
->w_botline
|| loff
.fill
== 0)
317 /* sufficient context, no need to scroll */
318 check_botline
= FALSE
;
321 /* sufficient context, no need to scroll */
322 check_botline
= FALSE
;
327 if (hasAnyFolding(curwin
))
329 /* Count the number of logical lines between the cursor and
330 * botline - p_so (approximation of how much will be
333 for (lnum
= curwin
->w_cursor
.lnum
;
334 lnum
>= curwin
->w_botline
- p_so
; --lnum
)
337 /* stop at end of file or when we know we are far off */
338 if (lnum
<= 0 || line_count
> curwin
->w_height
+ 1)
340 (void)hasFolding(lnum
, &lnum
, NULL
);
345 line_count
= curwin
->w_cursor
.lnum
- curwin
->w_botline
347 if (line_count
<= curwin
->w_height
+ 1)
348 scroll_cursor_bot(scrolljump_value(), FALSE
);
350 scroll_cursor_halfway(FALSE
);
354 curwin
->w_valid
|= VALID_TOPLINE
;
357 * Need to redraw when topline changed.
359 if (curwin
->w_topline
!= old_topline
361 || curwin
->w_topfill
!= old_topfill
366 if (curwin
->w_skipcol
!= 0)
368 curwin
->w_skipcol
= 0;
369 redraw_later(NOT_VALID
);
373 /* May need to set w_skipcol when cursor in w_topline. */
374 if (curwin
->w_cursor
.lnum
== curwin
->w_topline
)
384 * 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.
393 return (curwin
->w_height
* -p_sj
) / 100;
397 * Return TRUE when there are not 'scrolloff' lines above the cursor for the
406 if (curwin
->w_cursor
.lnum
< curwin
->w_topline
+ p_so
408 || hasAnyFolding(curwin
)
412 loff
.lnum
= curwin
->w_cursor
.lnum
;
415 n
= curwin
->w_topfill
; /* always have this context */
419 /* Count the visible screen lines above the cursor line. */
423 /* Stop when included a line above the window. */
424 if (loff
.lnum
< curwin
->w_topline
426 || (loff
.lnum
== curwin
->w_topline
&& loff
.fill
> 0)
441 if (curwin
->w_set_curswant
)
444 curwin
->w_curswant
= curwin
->w_virtcol
;
445 curwin
->w_set_curswant
= FALSE
;
450 * Check if the cursor has moved. Set the w_valid flag accordingly.
453 check_cursor_moved(wp
)
456 if (wp
->w_cursor
.lnum
!= wp
->w_valid_cursor
.lnum
)
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
;
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
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
;
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.
485 changed_window_setting()
487 changed_window_setting_win(curwin
);
491 changed_window_setting_win(wp
)
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
);
501 * Set wp->w_topline to a certain number.
504 set_topline(wp
, lnum
)
509 /* go to first of folded lines */
510 (void)hasFoldingWin(wp
, lnum
, &lnum
, NULL
, TRUE
, NULL
);
512 /* Approximate the value of w_botline */
513 wp
->w_botline
+= lnum
- wp
->w_topline
;
514 wp
->w_topline
= lnum
;
516 wp
->w_topline_was_set
= TRUE
;
521 wp
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
|VALID_TOPLINE
);
522 /* Don't set VALID_TOPLINE here, 'scrolloff' needs to be checked. */
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!
532 changed_cline_bef_curs()
534 curwin
->w_valid
&= ~(VALID_WROW
|VALID_WCOL
|VALID_VIRTCOL
535 |VALID_CHEIGHT
|VALID_TOPLINE
);
539 changed_cline_bef_curs_win(wp
)
542 wp
->w_valid
&= ~(VALID_WROW
|VALID_WCOL
|VALID_VIRTCOL
543 |VALID_CHEIGHT
|VALID_TOPLINE
);
548 * Call this function when the length of the cursor line (in screen
549 * characters) has changed, and the position of the cursor doesn't change.
550 * Need to take care of w_botline separately!
553 changed_cline_aft_curs()
555 curwin
->w_valid
&= ~VALID_CHEIGHT
;
560 * Call this function when the length of a line (in screen characters) above
561 * the cursor have changed.
562 * Need to take care of w_botline separately!
565 changed_line_abv_curs()
567 curwin
->w_valid
&= ~(VALID_WROW
|VALID_WCOL
|VALID_VIRTCOL
|VALID_CROW
568 |VALID_CHEIGHT
|VALID_TOPLINE
);
572 changed_line_abv_curs_win(wp
)
575 wp
->w_valid
&= ~(VALID_WROW
|VALID_WCOL
|VALID_VIRTCOL
|VALID_CROW
576 |VALID_CHEIGHT
|VALID_TOPLINE
);
580 * Make sure the value of curwin->w_botline is valid.
585 if (!(curwin
->w_valid
& VALID_BOTLINE
))
586 comp_botline(curwin
);
590 * Make sure the value of wp->w_botline is valid.
593 validate_botline_win(wp
)
596 if (!(wp
->w_valid
& VALID_BOTLINE
))
601 * Mark curwin->w_botline as invalid (because of some change in the buffer).
606 curwin
->w_valid
&= ~(VALID_BOTLINE
|VALID_BOTLINE_AP
);
610 invalidate_botline_win(wp
)
613 wp
->w_valid
&= ~(VALID_BOTLINE
|VALID_BOTLINE_AP
);
616 #if 0 /* never used */
618 * Mark curwin->w_botline as approximated (because of some small change in the
622 approximate_botline()
624 curwin
->w_valid
&= ~VALID_BOTLINE
;
629 approximate_botline_win(wp
)
632 wp
->w_valid
&= ~VALID_BOTLINE
;
637 * Return TRUE if curwin->w_botline is valid.
642 return (curwin
->w_valid
& VALID_BOTLINE
);
648 * Return TRUE if curwin->w_botline is valid or approximated.
651 botline_approximated()
653 return (curwin
->w_valid
& VALID_BOTLINE_AP
);
658 * Return TRUE if curwin->w_wrow and curwin->w_wcol are valid.
663 check_cursor_moved(curwin
);
664 return ((curwin
->w_valid
& (VALID_WROW
|VALID_WCOL
)) ==
665 (VALID_WROW
|VALID_WCOL
));
669 * Validate cursor position. Makes sure w_wrow and w_wcol are valid.
670 * w_topline must be valid, you may need to call update_topline() first!
675 check_cursor_moved(curwin
);
676 if ((curwin
->w_valid
& (VALID_WCOL
|VALID_WROW
)) != (VALID_WCOL
|VALID_WROW
))
680 #if defined(FEAT_GUI) || defined(PROTO)
682 * validate w_cline_row.
688 * First make sure that w_topline is valid (after moving the cursor).
691 check_cursor_moved(curwin
);
692 if (!(curwin
->w_valid
& VALID_CROW
))
693 curs_rows(curwin
, FALSE
);
698 * Compute wp->w_cline_row and wp->w_cline_height, based on the current value
701 * Returns OK when cursor is in the window, FAIL when it isn't.
704 curs_rows(wp
, do_botline
)
706 int do_botline
; /* also compute w_botline */
716 /* Check if wp->w_lines[].wl_size is invalid */
717 all_invalid
= (!redrawing()
718 || wp
->w_lines_valid
== 0
719 || wp
->w_lines
[0].wl_lnum
> wp
->w_topline
);
722 for (lnum
= wp
->w_topline
; lnum
< wp
->w_cursor
.lnum
; ++i
)
725 if (!all_invalid
&& i
< wp
->w_lines_valid
)
727 if (wp
->w_lines
[i
].wl_lnum
< lnum
|| !wp
->w_lines
[i
].wl_valid
)
728 continue; /* skip changed or deleted lines */
729 if (wp
->w_lines
[i
].wl_lnum
== lnum
)
732 /* Check for newly inserted lines below this row, in which
733 * case we need to check for folded lines. */
734 if (!wp
->w_buffer
->b_mod_set
735 || wp
->w_lines
[i
].wl_lastlnum
< wp
->w_cursor
.lnum
736 || wp
->w_buffer
->b_mod_top
737 > wp
->w_lines
[i
].wl_lastlnum
+ 1)
741 else if (wp
->w_lines
[i
].wl_lnum
> lnum
)
742 --i
; /* hold at inserted lines */
746 && (lnum
!= wp
->w_topline
|| !wp
->w_p_diff
)
751 lnum
= wp
->w_lines
[i
].wl_lastlnum
+ 1;
752 /* Cursor inside folded lines, don't count this row */
753 if (lnum
> wp
->w_cursor
.lnum
)
758 wp
->w_cline_row
+= wp
->w_lines
[i
].wl_size
;
763 fold_count
= foldedCount(wp
, lnum
, NULL
);
767 if (lnum
> wp
->w_cursor
.lnum
)
774 if (lnum
== wp
->w_topline
)
775 wp
->w_cline_row
+= plines_win_nofill(wp
, lnum
++, TRUE
)
779 wp
->w_cline_row
+= plines_win(wp
, lnum
++, TRUE
);
783 check_cursor_moved(wp
);
784 if (!(wp
->w_valid
& VALID_CHEIGHT
))
787 || i
== wp
->w_lines_valid
788 || (i
< wp
->w_lines_valid
789 && (!wp
->w_lines
[i
].wl_valid
790 || wp
->w_lines
[i
].wl_lnum
!= wp
->w_cursor
.lnum
)))
793 if (wp
->w_cursor
.lnum
== wp
->w_topline
)
794 wp
->w_cline_height
= plines_win_nofill(wp
, wp
->w_cursor
.lnum
,
795 TRUE
) + wp
->w_topfill
;
798 wp
->w_cline_height
= plines_win(wp
, wp
->w_cursor
.lnum
, TRUE
);
800 wp
->w_cline_folded
= hasFoldingWin(wp
, wp
->w_cursor
.lnum
,
801 NULL
, NULL
, TRUE
, NULL
);
804 else if (i
> wp
->w_lines_valid
)
806 /* a line that is too long to fit on the last screen line */
807 wp
->w_cline_height
= 0;
809 wp
->w_cline_folded
= hasFoldingWin(wp
, wp
->w_cursor
.lnum
,
810 NULL
, NULL
, TRUE
, NULL
);
815 wp
->w_cline_height
= wp
->w_lines
[i
].wl_size
;
817 wp
->w_cline_folded
= wp
->w_lines
[i
].wl_folded
;
822 wp
->w_valid
|= VALID_CROW
|VALID_CHEIGHT
;
824 /* validate botline too, if update_screen doesn't do it */
825 if (do_botline
&& all_invalid
)
826 validate_botline_win(wp
);
830 * Validate curwin->w_virtcol only.
835 validate_virtcol_win(curwin
);
839 * Validate wp->w_virtcol only.
842 validate_virtcol_win(wp
)
845 check_cursor_moved(wp
);
846 if (!(wp
->w_valid
& VALID_VIRTCOL
))
848 getvvcol(wp
, &wp
->w_cursor
, NULL
, &(wp
->w_virtcol
), NULL
);
849 wp
->w_valid
|= VALID_VIRTCOL
;
852 # ifdef FEAT_INS_EXPAND
856 redraw_win_later(wp
, SOME_VALID
);
862 * Validate curwin->w_cline_height only.
867 check_cursor_moved(curwin
);
868 if (!(curwin
->w_valid
& VALID_CHEIGHT
))
871 if (curwin
->w_cursor
.lnum
== curwin
->w_topline
)
872 curwin
->w_cline_height
= plines_nofill(curwin
->w_cursor
.lnum
)
876 curwin
->w_cline_height
= plines(curwin
->w_cursor
.lnum
);
878 curwin
->w_cline_folded
= hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
);
880 curwin
->w_valid
|= VALID_CHEIGHT
;
885 * Validate w_wcol and w_virtcol only.
888 validate_cursor_col()
895 if (!(curwin
->w_valid
& VALID_WCOL
))
897 col
= curwin
->w_virtcol
;
898 off
= curwin_col_off();
900 width
= W_WIDTH(curwin
) - off
+ curwin_col_off2();
902 /* long line wrapping, adjust curwin->w_wrow */
904 && col
>= (colnr_T
)W_WIDTH(curwin
)
906 /* use same formula as what is used in curs_columns() */
907 col
-= ((col
- W_WIDTH(curwin
)) / width
+ 1) * width
;
908 if (col
> (int)curwin
->w_leftcol
)
909 col
-= curwin
->w_leftcol
;
912 curwin
->w_wcol
= col
;
914 curwin
->w_valid
|= VALID_WCOL
;
919 * Compute offset of a window, occupied by absolute or relative line number,
920 * fold column and sign column (these don't move when scrolling horizontally).
926 return (((wp
->w_p_nu
|| wp
->w_p_rnu
) ? number_width(wp
) + 1 : 0)
928 + (cmdwin_type
== 0 || wp
!= curwin
? 0 : 1)
935 # ifdef FEAT_NETBEANS_INTG
936 /* always show glyph gutter in netbeans */
939 wp
->w_buffer
->b_signlist
!= NULL
? 2 : 0)
947 return win_col_off(curwin
);
951 * Return the difference in column offset for the second screen line of a
952 * wrapped line. It's 8 if 'number' or 'relativenumber' is on and 'n' is in
959 if ((wp
->w_p_nu
|| wp
->w_p_rnu
) && vim_strchr(p_cpo
, CPO_NUMCOL
) != NULL
)
960 return number_width(wp
) + 1;
967 return win_col_off2(curwin
);
971 * compute curwin->w_wcol and curwin->w_virtcol.
972 * Also updates curwin->w_wrow and curwin->w_cline_row.
973 * Also updates curwin->w_leftcol.
977 int scroll
; /* when TRUE, may scroll horizontally */
980 int extra
; /* offset for first screen line */
981 int off_left
, off_right
;
989 colnr_T prev_skipcol
;
992 * First make sure that w_topline is valid (after moving the cursor).
997 * Next make sure that w_cline_row is valid.
999 if (!(curwin
->w_valid
& VALID_CROW
))
1000 curs_rows(curwin
, FALSE
);
1003 * Compute the number of virtual columns.
1006 if (curwin
->w_cline_folded
)
1007 /* In a folded line the cursor is always in the first column */
1008 startcol
= curwin
->w_virtcol
= endcol
= curwin
->w_leftcol
;
1011 getvvcol(curwin
, &curwin
->w_cursor
,
1012 &startcol
, &(curwin
->w_virtcol
), &endcol
);
1014 /* remove '$' from change command when cursor moves onto it */
1015 if (startcol
> dollar_vcol
)
1018 extra
= curwin_col_off();
1019 curwin
->w_wcol
= curwin
->w_virtcol
+ extra
;
1023 * Now compute w_wrow, counting screen lines from w_cline_row.
1025 curwin
->w_wrow
= curwin
->w_cline_row
;
1027 textwidth
= W_WIDTH(curwin
) - extra
;
1030 /* No room for text, put cursor in last char of window. */
1031 curwin
->w_wcol
= W_WIDTH(curwin
) - 1;
1032 curwin
->w_wrow
= curwin
->w_height
- 1;
1034 else if (curwin
->w_p_wrap
1035 #ifdef FEAT_VERTSPLIT
1036 && curwin
->w_width
!= 0
1040 width
= textwidth
+ curwin_col_off2();
1042 /* long line wrapping, adjust curwin->w_wrow */
1043 if (curwin
->w_wcol
>= W_WIDTH(curwin
))
1045 /* this same formula is used in validate_cursor_col() */
1046 n
= (curwin
->w_wcol
- W_WIDTH(curwin
)) / width
+ 1;
1047 curwin
->w_wcol
-= n
* width
;
1048 curwin
->w_wrow
+= n
;
1050 #ifdef FEAT_LINEBREAK
1051 /* When cursor wraps to first char of next line in Insert
1052 * mode, the 'showbreak' string isn't shown, backup to first
1054 if (*p_sbr
&& *ml_get_cursor() == NUL
1055 && curwin
->w_wcol
== (int)vim_strsize(p_sbr
))
1061 /* No line wrapping: compute curwin->w_leftcol if scrolling is on and line
1063 * If scrolling is off, curwin->w_leftcol is assumed to be 0 */
1066 && !curwin
->w_cline_folded
1071 * If Cursor is left of the screen, scroll rightwards.
1072 * If Cursor is right of the screen, scroll leftwards
1073 * If we get closer to the edge than 'sidescrolloff', scroll a little
1076 off_left
= (int)startcol
- (int)curwin
->w_leftcol
- p_siso
;
1077 off_right
= (int)endcol
- (int)(curwin
->w_leftcol
+ W_WIDTH(curwin
)
1079 if (off_left
< 0 || off_right
> 0)
1086 /* When far off or not enough room on either side, put cursor in
1087 * middle of window. */
1088 if (p_ss
== 0 || diff
>= textwidth
/ 2 || off_right
>= off_left
)
1089 new_leftcol
= curwin
->w_wcol
- extra
- textwidth
/ 2;
1095 new_leftcol
= curwin
->w_leftcol
- diff
;
1097 new_leftcol
= curwin
->w_leftcol
+ diff
;
1099 if (new_leftcol
< 0)
1101 if (new_leftcol
!= (int)curwin
->w_leftcol
)
1103 curwin
->w_leftcol
= new_leftcol
;
1104 /* screen has to be redrawn with new curwin->w_leftcol */
1105 redraw_later(NOT_VALID
);
1108 curwin
->w_wcol
-= curwin
->w_leftcol
;
1110 else if (curwin
->w_wcol
> (int)curwin
->w_leftcol
)
1111 curwin
->w_wcol
-= curwin
->w_leftcol
;
1116 /* Skip over filler lines. At the top use w_topfill, there
1117 * may be some filler lines above the window. */
1118 if (curwin
->w_cursor
.lnum
== curwin
->w_topline
)
1119 curwin
->w_wrow
+= curwin
->w_topfill
;
1121 curwin
->w_wrow
+= diff_check_fill(curwin
, curwin
->w_cursor
.lnum
);
1124 prev_skipcol
= curwin
->w_skipcol
;
1127 if ((curwin
->w_wrow
>= curwin
->w_height
1128 || ((prev_skipcol
> 0
1129 || curwin
->w_wrow
+ p_so
>= curwin
->w_height
)
1136 (curwin
, curwin
->w_cursor
.lnum
, FALSE
))
1137 - 1 >= curwin
->w_height
))
1138 && curwin
->w_height
!= 0
1139 && curwin
->w_cursor
.lnum
== curwin
->w_topline
1141 #ifdef FEAT_VERTSPLIT
1142 && curwin
->w_width
!= 0
1146 /* Cursor past end of screen. Happens with a single line that does
1147 * not fit on screen. Find a skipcol to show the text around the
1148 * cursor. Avoid scrolling all the time. compute value of "extra":
1149 * 1: Less than "p_so" lines above
1150 * 2: Less than "p_so" lines below
1151 * 3: both of them */
1153 if (curwin
->w_skipcol
+ p_so
* width
> curwin
->w_virtcol
)
1155 /* Compute last display line of the buffer line that we want at the
1156 * bottom of the window. */
1158 p_lines
= plines_win(curwin
, curwin
->w_cursor
.lnum
, FALSE
);
1160 if (p_lines
> curwin
->w_wrow
+ p_so
)
1161 n
= curwin
->w_wrow
+ p_so
;
1164 if ((colnr_T
)n
>= curwin
->w_height
+ curwin
->w_skipcol
/ width
)
1167 if (extra
== 3 || p_lines
< p_so
* 2)
1169 /* not enough room for 'scrolloff', put cursor in the middle */
1170 n
= curwin
->w_virtcol
/ width
;
1171 if (n
> curwin
->w_height
/ 2)
1172 n
-= curwin
->w_height
/ 2;
1175 /* don't skip more than necessary */
1176 if (n
> p_lines
- curwin
->w_height
+ 1)
1177 n
= p_lines
- curwin
->w_height
+ 1;
1178 curwin
->w_skipcol
= n
* width
;
1180 else if (extra
== 1)
1182 /* less then 'scrolloff' lines above, decrease skipcol */
1183 extra
= (curwin
->w_skipcol
+ p_so
* width
- curwin
->w_virtcol
1184 + width
- 1) / width
;
1187 if ((colnr_T
)(extra
* width
) > curwin
->w_skipcol
)
1188 extra
= curwin
->w_skipcol
/ width
;
1189 curwin
->w_skipcol
-= extra
* width
;
1192 else if (extra
== 2)
1194 /* less then 'scrolloff' lines below, increase skipcol */
1195 endcol
= (n
- curwin
->w_height
+ 1) * width
;
1196 while (endcol
> curwin
->w_virtcol
)
1198 if (endcol
> curwin
->w_skipcol
)
1199 curwin
->w_skipcol
= endcol
;
1202 curwin
->w_wrow
-= curwin
->w_skipcol
/ width
;
1203 if (curwin
->w_wrow
>= curwin
->w_height
)
1205 /* small window, make sure cursor is in it */
1206 extra
= curwin
->w_wrow
- curwin
->w_height
+ 1;
1207 curwin
->w_skipcol
+= extra
* width
;
1208 curwin
->w_wrow
-= extra
;
1211 extra
= ((int)prev_skipcol
- (int)curwin
->w_skipcol
) / width
;
1213 win_ins_lines(curwin
, 0, extra
, FALSE
, FALSE
);
1215 win_del_lines(curwin
, 0, -extra
, FALSE
, FALSE
);
1218 curwin
->w_skipcol
= 0;
1219 if (prev_skipcol
!= curwin
->w_skipcol
)
1220 redraw_later(NOT_VALID
);
1222 /* Redraw when w_row changes and 'relativenumber' is set */
1223 if (((curwin
->w_valid
& VALID_WROW
) == 0 && (curwin
->w_p_rnu
1225 /* or when w_row changes and 'cursorline' is set. */
1230 /* or when w_virtcol changes and 'cursorcolumn' is set */
1231 || (curwin
->w_p_cuc
&& (curwin
->w_valid
& VALID_VIRTCOL
) == 0)
1234 # ifdef FEAT_INS_EXPAND
1237 redraw_later(SOME_VALID
);
1239 curwin
->w_valid
|= VALID_WCOL
|VALID_WROW
|VALID_VIRTCOL
;
1243 * Scroll the current window down by "line_count" logical lines. "CTRL-Y"
1246 scrolldown(line_count
, byfold
)
1248 int byfold UNUSED
; /* TRUE: count a closed fold as one line */
1250 long done
= 0; /* total # of physical lines done */
1257 /* Make sure w_topline is at the first of a sequence of folded lines. */
1258 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
1260 validate_cursor(); /* w_wrow needs to be valid */
1261 while (line_count
-- > 0)
1264 if (curwin
->w_topfill
< diff_check(curwin
, curwin
->w_topline
)
1265 && curwin
->w_topfill
< curwin
->w_height
- 1)
1267 ++curwin
->w_topfill
;
1273 if (curwin
->w_topline
== 1)
1275 --curwin
->w_topline
;
1277 curwin
->w_topfill
= 0;
1280 /* A sequence of folded lines only counts for one logical line */
1281 if (hasFolding(curwin
->w_topline
, &first
, NULL
))
1285 line_count
-= curwin
->w_topline
- first
- 1;
1286 curwin
->w_botline
-= curwin
->w_topline
- first
;
1287 curwin
->w_topline
= first
;
1292 done
+= plines_nofill(curwin
->w_topline
);
1294 done
+= plines(curwin
->w_topline
);
1297 --curwin
->w_botline
; /* approximate w_botline */
1298 invalidate_botline();
1300 curwin
->w_wrow
+= done
; /* keep w_wrow updated */
1301 curwin
->w_cline_row
+= done
; /* keep w_cline_row updated */
1304 if (curwin
->w_cursor
.lnum
== curwin
->w_topline
)
1305 curwin
->w_cline_row
= 0;
1306 check_topfill(curwin
, TRUE
);
1310 * Compute the row number of the last row of the cursor line
1311 * and move the cursor onto the displayed part of the window.
1313 wrow
= curwin
->w_wrow
;
1314 if (curwin
->w_p_wrap
1315 #ifdef FEAT_VERTSPLIT
1316 && curwin
->w_width
!= 0
1322 wrow
+= curwin
->w_cline_height
- 1 -
1323 curwin
->w_virtcol
/ W_WIDTH(curwin
);
1325 while (wrow
>= curwin
->w_height
&& curwin
->w_cursor
.lnum
> 1)
1328 if (hasFolding(curwin
->w_cursor
.lnum
, &first
, NULL
))
1332 curwin
->w_cursor
.lnum
= 1;
1334 curwin
->w_cursor
.lnum
= first
- 1;
1338 wrow
-= plines(curwin
->w_cursor
.lnum
--);
1340 ~(VALID_WROW
|VALID_WCOL
|VALID_CHEIGHT
|VALID_CROW
|VALID_VIRTCOL
);
1346 /* Move cursor to first line of closed fold. */
1349 coladvance(curwin
->w_curswant
);
1354 * Scroll the current window up by "line_count" logical lines. "CTRL-E"
1357 scrollup(line_count
, byfold
)
1359 int byfold UNUSED
; /* TRUE: count a closed fold as one line */
1361 #if defined(FEAT_FOLDING) || defined(FEAT_DIFF)
1365 # ifdef FEAT_FOLDING
1366 (byfold
&& hasAnyFolding(curwin
))
1376 /* count each sequence of folded lines as one logical line */
1377 lnum
= curwin
->w_topline
;
1378 while (line_count
--)
1381 if (curwin
->w_topfill
> 0)
1382 --curwin
->w_topfill
;
1386 # ifdef FEAT_FOLDING
1388 (void)hasFolding(lnum
, NULL
, &lnum
);
1390 if (lnum
>= curbuf
->b_ml
.ml_line_count
)
1394 curwin
->w_topfill
= diff_check_fill(curwin
, lnum
);
1398 /* approximate w_botline */
1399 curwin
->w_botline
+= lnum
- curwin
->w_topline
;
1400 curwin
->w_topline
= lnum
;
1405 curwin
->w_topline
+= line_count
;
1406 curwin
->w_botline
+= line_count
; /* approximate w_botline */
1409 if (curwin
->w_topline
> curbuf
->b_ml
.ml_line_count
)
1410 curwin
->w_topline
= curbuf
->b_ml
.ml_line_count
;
1411 if (curwin
->w_botline
> curbuf
->b_ml
.ml_line_count
+ 1)
1412 curwin
->w_botline
= curbuf
->b_ml
.ml_line_count
+ 1;
1415 check_topfill(curwin
, FALSE
);
1419 if (hasAnyFolding(curwin
))
1420 /* Make sure w_topline is at the first of a sequence of folded lines. */
1421 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
1424 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
1425 if (curwin
->w_cursor
.lnum
< curwin
->w_topline
)
1427 curwin
->w_cursor
.lnum
= curwin
->w_topline
;
1429 ~(VALID_WROW
|VALID_WCOL
|VALID_CHEIGHT
|VALID_CROW
|VALID_VIRTCOL
);
1430 coladvance(curwin
->w_curswant
);
1436 * Don't end up with too many filler lines in the window.
1439 check_topfill(wp
, down
)
1441 int down
; /* when TRUE scroll down when not enough space */
1445 if (wp
->w_topfill
> 0)
1447 n
= plines_win_nofill(wp
, wp
->w_topline
, TRUE
);
1448 if (wp
->w_topfill
+ n
> wp
->w_height
)
1450 if (down
&& wp
->w_topline
> 1)
1457 wp
->w_topfill
= wp
->w_height
- n
;
1458 if (wp
->w_topfill
< 0)
1466 * Use as many filler lines as possible for w_topline. Make sure w_topline
1474 n
= plines_nofill(curwin
->w_topline
);
1475 if (n
>= curwin
->w_height
)
1476 curwin
->w_topfill
= 0;
1479 curwin
->w_topfill
= diff_check_fill(curwin
, curwin
->w_topline
);
1480 if (curwin
->w_topfill
+ n
> curwin
->w_height
)
1481 curwin
->w_topfill
= curwin
->w_height
- n
;
1486 #if defined(FEAT_INS_EXPAND) || defined(PROTO)
1488 * Scroll the screen one line down, but don't do it if it would move the
1489 * cursor off the screen.
1496 int can_fill
= (curwin
->w_topfill
1497 < diff_check_fill(curwin
, curwin
->w_topline
));
1500 if (curwin
->w_topline
<= 1
1507 validate_cursor(); /* w_wrow needs to be valid */
1510 * Compute the row number of the last row of the cursor line
1511 * and make sure it doesn't go off the screen. Make sure the cursor
1512 * doesn't go past 'scrolloff' lines from the screen end.
1514 end_row
= curwin
->w_wrow
;
1519 end_row
+= plines_nofill(curwin
->w_topline
- 1);
1521 end_row
+= plines(curwin
->w_topline
- 1);
1523 if (curwin
->w_p_wrap
1524 #ifdef FEAT_VERTSPLIT
1525 && curwin
->w_width
!= 0
1531 end_row
+= curwin
->w_cline_height
- 1 -
1532 curwin
->w_virtcol
/ W_WIDTH(curwin
);
1534 if (end_row
< curwin
->w_height
- p_so
)
1539 ++curwin
->w_topfill
;
1540 check_topfill(curwin
, TRUE
);
1544 --curwin
->w_topline
;
1545 curwin
->w_topfill
= 0;
1548 --curwin
->w_topline
;
1551 hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
1553 --curwin
->w_botline
; /* approximate w_botline */
1554 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
1559 * Scroll the screen one line up, but don't do it if it would move the cursor
1567 if (curwin
->w_topline
== curbuf
->b_ml
.ml_line_count
1569 && curwin
->w_topfill
== 0
1574 validate_cursor(); /* w_wrow needs to be valid */
1577 * Compute the row number of the first row of the cursor line
1578 * and make sure it doesn't go off the screen. Make sure the cursor
1579 * doesn't go before 'scrolloff' lines from the screen start.
1582 start_row
= curwin
->w_wrow
- plines_nofill(curwin
->w_topline
)
1583 - curwin
->w_topfill
;
1585 start_row
= curwin
->w_wrow
- plines(curwin
->w_topline
);
1587 if (curwin
->w_p_wrap
1588 #ifdef FEAT_VERTSPLIT
1589 && curwin
->w_width
!= 0
1594 start_row
-= curwin
->w_virtcol
/ W_WIDTH(curwin
);
1596 if (start_row
>= p_so
)
1599 if (curwin
->w_topfill
> 0)
1600 --curwin
->w_topfill
;
1605 (void)hasFolding(curwin
->w_topline
, NULL
, &curwin
->w_topline
);
1607 ++curwin
->w_topline
;
1609 ++curwin
->w_botline
; /* approximate w_botline */
1610 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
1613 #endif /* FEAT_INS_EXPAND */
1616 * Add one line above "lp->lnum". This can be a filler line, a closed fold or
1617 * a (wrapped) text line. Uses and sets "lp->fill".
1618 * Returns the height of the added line in "lp->height".
1619 * Lines above the first one are incredibly high: MAXCOL.
1626 if (lp
->fill
< diff_check_fill(curwin
, lp
->lnum
))
1628 /* Add a filler line. */
1640 lp
->height
= MAXCOL
;
1643 if (hasFolding(lp
->lnum
, &lp
->lnum
, NULL
))
1644 /* Add a closed fold */
1650 lp
->height
= plines_nofill(lp
->lnum
);
1652 lp
->height
= plines(lp
->lnum
);
1659 * Add one line below "lp->lnum". This can be a filler line, a closed fold or
1660 * a (wrapped) text line. Uses and sets "lp->fill".
1661 * Returns the height of the added line in "lp->height".
1662 * Lines below the last one are incredibly high.
1669 if (lp
->fill
< diff_check_fill(curwin
, lp
->lnum
+ 1))
1671 /* Add a filler line. */
1682 if (lp
->lnum
> curbuf
->b_ml
.ml_line_count
)
1683 lp
->height
= MAXCOL
;
1686 if (hasFolding(lp
->lnum
, NULL
, &lp
->lnum
))
1687 /* Add a closed fold */
1693 lp
->height
= plines_nofill(lp
->lnum
);
1695 lp
->height
= plines(lp
->lnum
);
1703 * Switch from including filler lines below lp->lnum to including filler
1704 * lines above loff.lnum + 1. This keeps pointing to the same line.
1705 * When there are no filler lines nothing changes.
1714 lp
->fill
= diff_check_fill(curwin
, lp
->lnum
) - lp
->fill
+ 1;
1719 * Switch from including filler lines above lp->lnum to including filler
1720 * lines below loff.lnum - 1. This keeps pointing to the same line.
1721 * When there are no filler lines nothing changes.
1729 lp
->fill
= diff_check_fill(curwin
, lp
->lnum
) - lp
->fill
+ 1;
1736 * Recompute topline to put the cursor at the top of the window.
1737 * Scroll at least "min_scroll" lines.
1738 * If "always" is TRUE, always set topline (for "zt").
1741 scroll_cursor_top(min_scroll
, always
)
1749 linenr_T top
; /* just above displayed lines */
1750 linenr_T bot
; /* just below displayed lines */
1751 linenr_T old_topline
= curwin
->w_topline
;
1753 linenr_T old_topfill
= curwin
->w_topfill
;
1755 linenr_T new_topline
;
1759 if (mouse_dragging
> 0)
1760 off
= mouse_dragging
- 1;
1764 * Decrease topline until:
1766 * - (part of) the cursor line is moved off the screen or
1767 * - moved at least 'scrolljump' lines and
1768 * - at least 'scrolloff' lines above and below the cursor
1771 used
= curwin
->w_cline_height
;
1772 if (curwin
->w_cursor
.lnum
< curwin
->w_topline
)
1776 if (hasFolding(curwin
->w_cursor
.lnum
, &top
, &bot
))
1784 top
= curwin
->w_cursor
.lnum
- 1;
1785 bot
= curwin
->w_cursor
.lnum
+ 1;
1787 new_topline
= top
+ 1;
1790 /* count filler lines of the cursor window as context */
1791 i
= diff_check_fill(curwin
, curwin
->w_cursor
.lnum
);
1797 * Check if the lines from "top" to "bot" fit in the window. If they do,
1798 * set new_topline and advance "top" and "bot" to include more lines.
1803 if (hasFolding(top
, &top
, NULL
))
1804 /* count one logical line for a sequence of folded lines */
1810 if (extra
+ i
<= off
&& bot
< curbuf
->b_ml
.ml_line_count
)
1813 if (hasFolding(bot
, NULL
, &bot
))
1814 /* count one logical line for a sequence of folded lines */
1818 used
+= plines(bot
);
1820 if (used
> curwin
->w_height
)
1822 if (top
< curwin
->w_topline
)
1826 * If scrolling is needed, scroll at least 'sj' lines.
1828 if ((new_topline
>= curwin
->w_topline
|| scrolled
> min_scroll
)
1839 * If we don't have enough space, put cursor in the middle.
1840 * This makes sure we get the same position when using "k" and "j"
1841 * in a small window.
1843 if (used
> curwin
->w_height
)
1844 scroll_cursor_halfway(FALSE
);
1848 * If "always" is FALSE, only adjust topline to a lower value, higher
1849 * value may happen with wrapping lines
1851 if (new_topline
< curwin
->w_topline
|| always
)
1852 curwin
->w_topline
= new_topline
;
1853 if (curwin
->w_topline
> curwin
->w_cursor
.lnum
)
1854 curwin
->w_topline
= curwin
->w_cursor
.lnum
;
1856 curwin
->w_topfill
= diff_check_fill(curwin
, curwin
->w_topline
);
1857 if (curwin
->w_topfill
> 0 && extra
> off
)
1859 curwin
->w_topfill
-= extra
- off
;
1860 if (curwin
->w_topfill
< 0)
1861 curwin
->w_topfill
= 0;
1863 check_topfill(curwin
, FALSE
);
1865 if (curwin
->w_topline
!= old_topline
1867 || curwin
->w_topfill
!= old_topfill
1871 ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
|VALID_BOTLINE_AP
);
1872 curwin
->w_valid
|= VALID_TOPLINE
;
1877 * Set w_empty_rows and w_filler_rows for window "wp", having used up "used"
1878 * screen lines for text lines.
1881 set_empty_rows(wp
, used
)
1886 wp
->w_filler_rows
= 0;
1889 wp
->w_empty_rows
= 0; /* single line that doesn't fit */
1892 wp
->w_empty_rows
= wp
->w_height
- used
;
1894 if (wp
->w_botline
<= wp
->w_buffer
->b_ml
.ml_line_count
)
1896 wp
->w_filler_rows
= diff_check_fill(wp
, wp
->w_botline
);
1897 if (wp
->w_empty_rows
> wp
->w_filler_rows
)
1898 wp
->w_empty_rows
-= wp
->w_filler_rows
;
1901 wp
->w_filler_rows
= wp
->w_empty_rows
;
1902 wp
->w_empty_rows
= 0;
1910 * Recompute topline to put the cursor at the bottom of the window.
1911 * Scroll at least "min_scroll" lines.
1912 * If "set_topbot" is TRUE, set topline and botline first (for "zb").
1913 * This is messy stuff!!!
1916 scroll_cursor_bot(min_scroll
, set_topbot
)
1924 linenr_T line_count
;
1925 linenr_T old_topline
= curwin
->w_topline
;
1929 int old_topfill
= curwin
->w_topfill
;
1930 int fill_below_window
;
1932 linenr_T old_botline
= curwin
->w_botline
;
1933 linenr_T old_valid
= curwin
->w_valid
;
1934 int old_empty_rows
= curwin
->w_empty_rows
;
1935 linenr_T cln
; /* Cursor Line Number */
1937 cln
= curwin
->w_cursor
.lnum
;
1941 curwin
->w_botline
= cln
+ 1;
1945 for (curwin
->w_topline
= curwin
->w_botline
;
1946 curwin
->w_topline
> 1;
1947 curwin
->w_topline
= loff
.lnum
)
1949 loff
.lnum
= curwin
->w_topline
;
1950 topline_back(&loff
);
1951 if (loff
.height
== MAXCOL
|| used
+ loff
.height
> curwin
->w_height
)
1953 used
+= loff
.height
;
1955 curwin
->w_topfill
= loff
.fill
;
1958 set_empty_rows(curwin
, used
);
1959 curwin
->w_valid
|= VALID_BOTLINE
|VALID_BOTLINE_AP
;
1960 if (curwin
->w_topline
!= old_topline
1962 || curwin
->w_topfill
!= old_topfill
1965 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
);
1970 /* The lines of the cursor line itself are always used. */
1972 used
= plines_nofill(cln
);
1975 used
= curwin
->w_cline_height
;
1978 /* If the cursor is below botline, we will at least scroll by the height
1979 * of the cursor line. Correct for empty lines, which are really part of
1981 if (cln
>= curwin
->w_botline
)
1984 if (cln
== curwin
->w_botline
)
1985 scrolled
-= curwin
->w_empty_rows
;
1989 * Stop counting lines to scroll when
1990 * - hitting start of the file
1991 * - scrolled nothing or at least 'sj' lines
1992 * - at least 'so' lines below the cursor
1993 * - lines between botline and cursor have been counted
1996 if (!hasFolding(curwin
->w_cursor
.lnum
, &loff
.lnum
, &boff
.lnum
))
2005 fill_below_window
= diff_check_fill(curwin
, curwin
->w_botline
)
2006 - curwin
->w_filler_rows
;
2009 while (loff
.lnum
> 1)
2011 /* Stop when scrolled nothing or at least "min_scroll", found "extra"
2012 * context for 'scrolloff' and counted all lines below the window. */
2013 if ((((scrolled
<= 0 || scrolled
>= min_scroll
)
2016 mouse_dragging
> 0 ? mouse_dragging
- 1 :
2019 || boff
.lnum
+ 1 > curbuf
->b_ml
.ml_line_count
)
2020 && loff
.lnum
<= curwin
->w_botline
2022 && (loff
.lnum
< curwin
->w_botline
2023 || loff
.fill
>= fill_below_window
)
2028 /* Add one line above */
2029 topline_back(&loff
);
2030 if (loff
.height
== MAXCOL
)
2033 used
+= loff
.height
;
2034 if (used
> curwin
->w_height
)
2036 if (loff
.lnum
>= curwin
->w_botline
2038 && (loff
.lnum
> curwin
->w_botline
2039 || loff
.fill
<= fill_below_window
)
2043 /* Count screen lines that are below the window. */
2044 scrolled
+= loff
.height
;
2045 if (loff
.lnum
== curwin
->w_botline
2050 scrolled
-= curwin
->w_empty_rows
;
2053 if (boff
.lnum
< curbuf
->b_ml
.ml_line_count
)
2055 /* Add one line below */
2056 botline_forw(&boff
);
2057 used
+= boff
.height
;
2058 if (used
> curwin
->w_height
)
2062 mouse_dragging
> 0 ? mouse_dragging
- 1 :
2064 p_so
) || scrolled
< min_scroll
)
2066 extra
+= boff
.height
;
2067 if (boff
.lnum
>= curwin
->w_botline
2069 || (boff
.lnum
+ 1 == curwin
->w_botline
2070 && boff
.fill
> curwin
->w_filler_rows
)
2074 /* Count screen lines that are below the window. */
2075 scrolled
+= boff
.height
;
2076 if (boff
.lnum
== curwin
->w_botline
2081 scrolled
-= curwin
->w_empty_rows
;
2087 /* curwin->w_empty_rows is larger, no need to scroll */
2090 /* more than a screenfull, don't scroll but redraw */
2091 else if (used
> curwin
->w_height
)
2093 /* scroll minimal number of lines */
2098 boff
.fill
= curwin
->w_topfill
;
2100 boff
.lnum
= curwin
->w_topline
- 1;
2101 for (i
= 0; i
< scrolled
&& boff
.lnum
< curwin
->w_botline
; )
2103 botline_forw(&boff
);
2107 if (i
< scrolled
) /* below curwin->w_botline, don't scroll */
2112 * Scroll up if the cursor is off the bottom of the screen a bit.
2113 * Otherwise put it at 1/2 of the screen.
2115 if (line_count
>= curwin
->w_height
&& line_count
> min_scroll
)
2116 scroll_cursor_halfway(FALSE
);
2118 scrollup(line_count
, TRUE
);
2121 * If topline didn't change we need to restore w_botline and w_empty_rows
2122 * (we changed them).
2123 * If topline did change, update_screen() will set botline.
2125 if (curwin
->w_topline
== old_topline
&& set_topbot
)
2127 curwin
->w_botline
= old_botline
;
2128 curwin
->w_empty_rows
= old_empty_rows
;
2129 curwin
->w_valid
= old_valid
;
2131 curwin
->w_valid
|= VALID_TOPLINE
;
2135 * Recompute topline to put the cursor halfway the window
2136 * If "atend" is TRUE, also put it halfway at the end of the file.
2139 scroll_cursor_halfway(atend
)
2152 loff
.lnum
= boff
.lnum
= curwin
->w_cursor
.lnum
;
2154 (void)hasFolding(loff
.lnum
, &loff
.lnum
, &boff
.lnum
);
2157 used
= plines_nofill(loff
.lnum
);
2161 used
= plines(loff
.lnum
);
2163 topline
= loff
.lnum
;
2166 if (below
<= above
) /* add a line below the cursor first */
2168 if (boff
.lnum
< curbuf
->b_ml
.ml_line_count
)
2170 botline_forw(&boff
);
2171 used
+= boff
.height
;
2172 if (used
> curwin
->w_height
)
2174 below
+= boff
.height
;
2178 ++below
; /* count a "~" line */
2184 if (below
> above
) /* add a line above the cursor */
2186 topline_back(&loff
);
2187 if (loff
.height
== MAXCOL
)
2190 used
+= loff
.height
;
2191 if (used
> curwin
->w_height
)
2193 above
+= loff
.height
;
2194 topline
= loff
.lnum
;
2196 topfill
= loff
.fill
;
2201 if (!hasFolding(topline
, &curwin
->w_topline
, NULL
))
2203 curwin
->w_topline
= topline
;
2205 curwin
->w_topfill
= topfill
;
2206 check_topfill(curwin
, FALSE
);
2208 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
|VALID_BOTLINE_AP
);
2209 curwin
->w_valid
|= VALID_TOPLINE
;
2213 * Correct the cursor position so that it is in a part of the screen at least
2214 * 'so' lines from the top and bottom, if possible.
2215 * If not possible, put it at the same position as scroll_cursor_halfway().
2216 * When called topline must be valid!
2221 int above
= 0; /* screen lines above topline */
2223 int below
= 0; /* screen lines below botline */
2225 int above_wanted
, below_wanted
;
2226 linenr_T cln
; /* Cursor Line Number */
2230 * How many lines we would like to have above/below the cursor depends on
2231 * whether the first/last line of the file is on screen.
2233 above_wanted
= p_so
;
2234 below_wanted
= p_so
;
2236 if (mouse_dragging
> 0)
2238 above_wanted
= mouse_dragging
- 1;
2239 below_wanted
= mouse_dragging
- 1;
2242 if (curwin
->w_topline
== 1)
2245 max_off
= curwin
->w_height
/ 2;
2246 if (below_wanted
> max_off
)
2247 below_wanted
= max_off
;
2250 if (curwin
->w_botline
== curbuf
->b_ml
.ml_line_count
+ 1
2252 && mouse_dragging
== 0
2257 max_off
= (curwin
->w_height
- 1) / 2;
2258 if (above_wanted
> max_off
)
2259 above_wanted
= max_off
;
2263 * If there are sufficient file-lines above and below the cursor, we can
2266 cln
= curwin
->w_cursor
.lnum
;
2267 if (cln
>= curwin
->w_topline
+ above_wanted
2268 && cln
< curwin
->w_botline
- below_wanted
2270 && !hasAnyFolding(curwin
)
2276 * Narrow down the area where the cursor can be put by taking lines from
2277 * the top and the bottom until:
2278 * - the desired context lines are found
2279 * - the lines from the top is past the lines from the bottom
2281 topline
= curwin
->w_topline
;
2282 botline
= curwin
->w_botline
- 1;
2284 /* count filler lines as context */
2285 above
= curwin
->w_topfill
;
2286 below
= curwin
->w_filler_rows
;
2288 while ((above
< above_wanted
|| below
< below_wanted
) && topline
< botline
)
2290 if (below
< below_wanted
&& (below
<= above
|| above
>= above_wanted
))
2293 if (hasFolding(botline
, &botline
, NULL
))
2297 below
+= plines(botline
);
2300 if (above
< above_wanted
&& (above
< below
|| below
>= below_wanted
))
2303 if (hasFolding(topline
, NULL
, &topline
))
2308 above
+= plines(topline
);
2310 above
+= plines_nofill(topline
);
2312 /* Count filler lines below this line as context. */
2313 if (topline
< botline
)
2314 above
+= diff_check_fill(curwin
, topline
+ 1);
2319 if (topline
== botline
|| botline
== 0)
2320 curwin
->w_cursor
.lnum
= topline
;
2321 else if (topline
> botline
)
2322 curwin
->w_cursor
.lnum
= botline
;
2325 if (cln
< topline
&& curwin
->w_topline
> 1)
2327 curwin
->w_cursor
.lnum
= topline
;
2329 ~(VALID_WROW
|VALID_WCOL
|VALID_CHEIGHT
|VALID_CROW
);
2331 if (cln
> botline
&& curwin
->w_botline
<= curbuf
->b_ml
.ml_line_count
)
2333 curwin
->w_cursor
.lnum
= botline
;
2335 ~(VALID_WROW
|VALID_WCOL
|VALID_CHEIGHT
|VALID_CROW
);
2338 curwin
->w_valid
|= VALID_TOPLINE
;
2341 static void get_scroll_overlap
__ARGS((lineoff_T
*lp
, int dir
));
2344 * move screen 'count' pages up or down and update screen
2346 * return FAIL for failure, OK otherwise
2356 linenr_T old_topline
= curwin
->w_topline
;
2358 if (curbuf
->b_ml
.ml_line_count
== 1) /* nothing to do */
2364 for ( ; count
> 0; --count
)
2368 * It's an error to move a page up when the first line is already on
2369 * the screen. It's an error to move a page down when the last line
2370 * is on the screen and the topline is 'scrolloff' lines from the
2374 ? ((curwin
->w_topline
>= curbuf
->b_ml
.ml_line_count
- p_so
)
2375 && curwin
->w_botline
> curbuf
->b_ml
.ml_line_count
)
2376 : (curwin
->w_topline
== 1
2378 && curwin
->w_topfill
==
2379 diff_check_fill(curwin
, curwin
->w_topline
)
2393 if (firstwin
== lastwin
&& p_window
> 0 && p_window
< Rows
- 1)
2395 /* Vi compatible scrolling */
2397 ++curwin
->w_topline
;
2399 curwin
->w_topline
+= p_window
- 2;
2400 if (curwin
->w_topline
> curbuf
->b_ml
.ml_line_count
)
2401 curwin
->w_topline
= curbuf
->b_ml
.ml_line_count
;
2402 curwin
->w_cursor
.lnum
= curwin
->w_topline
;
2404 else if (curwin
->w_botline
> curbuf
->b_ml
.ml_line_count
)
2406 /* at end of file */
2407 curwin
->w_topline
= curbuf
->b_ml
.ml_line_count
;
2409 curwin
->w_topfill
= 0;
2411 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
);
2415 /* For the overlap, start with the line just below the window
2416 * and go upwards. */
2417 loff
.lnum
= curwin
->w_botline
;
2419 loff
.fill
= diff_check_fill(curwin
, loff
.lnum
)
2420 - curwin
->w_filler_rows
;
2422 get_scroll_overlap(&loff
, -1);
2423 curwin
->w_topline
= loff
.lnum
;
2425 curwin
->w_topfill
= loff
.fill
;
2426 check_topfill(curwin
, FALSE
);
2428 curwin
->w_cursor
.lnum
= curwin
->w_topline
;
2429 curwin
->w_valid
&= ~(VALID_WCOL
|VALID_CHEIGHT
|VALID_WROW
|
2430 VALID_CROW
|VALID_BOTLINE
|VALID_BOTLINE_AP
);
2433 else /* dir == BACKWARDS */
2436 if (curwin
->w_topline
== 1)
2438 /* Include max number of filler lines */
2443 if (firstwin
== lastwin
&& p_window
> 0 && p_window
< Rows
- 1)
2445 /* Vi compatible scrolling (sort of) */
2447 --curwin
->w_topline
;
2449 curwin
->w_topline
-= p_window
- 2;
2450 if (curwin
->w_topline
< 1)
2451 curwin
->w_topline
= 1;
2452 curwin
->w_cursor
.lnum
= curwin
->w_topline
+ p_window
- 1;
2453 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
2454 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
2458 /* Find the line at the top of the window that is going to be the
2459 * line at the bottom of the window. Make sure this results in
2460 * the same line as before doing CTRL-F. */
2461 loff
.lnum
= curwin
->w_topline
- 1;
2463 loff
.fill
= diff_check_fill(curwin
, loff
.lnum
+ 1)
2464 - curwin
->w_topfill
;
2466 get_scroll_overlap(&loff
, 1);
2468 if (loff
.lnum
>= curbuf
->b_ml
.ml_line_count
)
2470 loff
.lnum
= curbuf
->b_ml
.ml_line_count
;
2476 botline_topline(&loff
);
2479 curwin
->w_cursor
.lnum
= loff
.lnum
;
2481 /* Find the line just above the new topline to get the right line
2482 * at the bottom of the window. */
2484 while (n
<= curwin
->w_height
&& loff
.lnum
>= 1)
2486 topline_back(&loff
);
2487 if (loff
.height
== MAXCOL
)
2492 if (loff
.lnum
< 1) /* at begin of file */
2494 curwin
->w_topline
= 1;
2498 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
2502 /* Go two lines forward again. */
2504 topline_botline(&loff
);
2506 botline_forw(&loff
);
2507 botline_forw(&loff
);
2509 botline_topline(&loff
);
2512 /* We're at the wrong end of a fold now. */
2513 (void)hasFolding(loff
.lnum
, &loff
.lnum
, NULL
);
2516 /* Always scroll at least one line. Avoid getting stuck on
2517 * very long lines. */
2518 if (loff
.lnum
>= curwin
->w_topline
2520 && (loff
.lnum
> curwin
->w_topline
2521 || loff
.fill
>= curwin
->w_topfill
)
2526 /* First try using the maximum number of filler lines. If
2527 * that's not enough, backup one line. */
2528 loff
.fill
= curwin
->w_topfill
;
2529 if (curwin
->w_topfill
< diff_check_fill(curwin
,
2532 if (curwin
->w_topfill
== loff
.fill
)
2535 --curwin
->w_topline
;
2537 curwin
->w_topfill
= 0;
2540 comp_botline(curwin
);
2541 curwin
->w_cursor
.lnum
= curwin
->w_botline
- 1;
2542 curwin
->w_valid
&= ~(VALID_WCOL
|VALID_CHEIGHT
|
2543 VALID_WROW
|VALID_CROW
);
2547 curwin
->w_topline
= loff
.lnum
;
2549 curwin
->w_topfill
= loff
.fill
;
2550 check_topfill(curwin
, FALSE
);
2552 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
2562 beginline(BL_SOL
| BL_FIX
);
2563 curwin
->w_valid
&= ~(VALID_WCOL
|VALID_WROW
|VALID_VIRTCOL
);
2566 * Avoid the screen jumping up and down when 'scrolloff' is non-zero.
2567 * But make sure we scroll at least one line (happens with mix of long
2568 * wrapping lines and non-wrapping line).
2570 if (retval
== OK
&& dir
== FORWARD
&& check_top_offset())
2572 scroll_cursor_top(1, FALSE
);
2573 if (curwin
->w_topline
<= old_topline
2574 && old_topline
< curbuf
->b_ml
.ml_line_count
)
2576 curwin
->w_topline
= old_topline
+ 1;
2578 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
2583 redraw_later(VALID
);
2588 * Decide how much overlap to use for page-up or page-down scrolling.
2589 * This is symmetric, so that doing both keeps the same lines displayed.
2590 * Three lines are examined:
2592 * before CTRL-F after CTRL-F / before CTRL-B
2594 * l1 last but one line ------------
2595 * l2 last text line l2 top text line
2596 * ------------- l3 second text line
2600 get_scroll_overlap(lp
, dir
)
2605 int min_height
= curwin
->w_height
- 2;
2606 lineoff_T loff0
, loff1
, loff2
;
2612 lp
->height
= plines_nofill(lp
->lnum
);
2614 lp
->height
= plines(lp
->lnum
);
2617 if (h1
> min_height
)
2618 return; /* no overlap */
2626 if (h2
+ h1
> min_height
)
2628 *lp
= loff0
; /* no overlap */
2638 if (h3
+ h2
> min_height
)
2640 *lp
= loff0
; /* no overlap */
2650 if (h4
+ h3
+ h2
> min_height
|| h3
+ h2
+ h1
> min_height
)
2651 *lp
= loff1
; /* 1 line overlap */
2653 *lp
= loff2
; /* 2 lines overlap */
2657 /* #define KEEP_SCREEN_LINE */
2659 * Scroll 'scroll' lines up or down.
2662 halfpage(flag
, Prenum
)
2672 curwin
->w_p_scr
= (Prenum
> curwin
->w_height
) ?
2673 curwin
->w_height
: Prenum
;
2674 n
= (curwin
->w_p_scr
<= curwin
->w_height
) ?
2675 curwin
->w_p_scr
: curwin
->w_height
;
2678 room
= curwin
->w_empty_rows
;
2680 room
+= curwin
->w_filler_rows
;
2685 * scroll the text up
2687 while (n
> 0 && curwin
->w_botline
<= curbuf
->b_ml
.ml_line_count
)
2690 if (curwin
->w_topfill
> 0)
2693 if (--n
< 0 && scrolled
> 0)
2695 --curwin
->w_topfill
;
2701 i
= plines_nofill(curwin
->w_topline
);
2703 i
= plines(curwin
->w_topline
);
2706 if (n
< 0 && scrolled
> 0)
2709 (void)hasFolding(curwin
->w_topline
, NULL
, &curwin
->w_topline
);
2711 ++curwin
->w_topline
;
2713 curwin
->w_topfill
= diff_check_fill(curwin
, curwin
->w_topline
);
2716 #ifndef KEEP_SCREEN_LINE
2717 if (curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
2719 ++curwin
->w_cursor
.lnum
;
2721 ~(VALID_VIRTCOL
|VALID_CHEIGHT
|VALID_WCOL
);
2725 curwin
->w_valid
&= ~(VALID_CROW
|VALID_WROW
);
2729 * Correct w_botline for changed w_topline.
2730 * Won't work when there are filler lines.
2733 if (curwin
->w_p_diff
)
2734 curwin
->w_valid
&= ~(VALID_BOTLINE
|VALID_BOTLINE_AP
);
2741 i
= plines(curwin
->w_botline
);
2745 (void)hasFolding(curwin
->w_botline
, NULL
,
2746 &curwin
->w_botline
);
2748 ++curwin
->w_botline
;
2750 } while (curwin
->w_botline
<= curbuf
->b_ml
.ml_line_count
);
2754 #ifndef KEEP_SCREEN_LINE
2756 * When hit bottom of the file: move cursor down.
2760 # ifdef FEAT_FOLDING
2761 if (hasAnyFolding(curwin
))
2764 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
2766 (void)hasFolding(curwin
->w_cursor
.lnum
, NULL
,
2767 &curwin
->w_cursor
.lnum
);
2768 ++curwin
->w_cursor
.lnum
;
2773 curwin
->w_cursor
.lnum
+= n
;
2774 check_cursor_lnum();
2777 /* try to put the cursor in the same screen line */
2778 while ((curwin
->w_cursor
.lnum
< curwin
->w_topline
|| scrolled
> 0)
2779 && curwin
->w_cursor
.lnum
< curwin
->w_botline
- 1)
2781 scrolled
-= plines(curwin
->w_cursor
.lnum
);
2782 if (scrolled
< 0 && curwin
->w_cursor
.lnum
>= curwin
->w_topline
)
2784 # ifdef FEAT_FOLDING
2785 (void)hasFolding(curwin
->w_cursor
.lnum
, NULL
,
2786 &curwin
->w_cursor
.lnum
);
2788 ++curwin
->w_cursor
.lnum
;
2795 * scroll the text down
2797 while (n
> 0 && curwin
->w_topline
> 1)
2800 if (curwin
->w_topfill
< diff_check_fill(curwin
, curwin
->w_topline
))
2803 if (--n
< 0 && scrolled
> 0)
2805 ++curwin
->w_topfill
;
2811 i
= plines_nofill(curwin
->w_topline
- 1);
2813 i
= plines(curwin
->w_topline
- 1);
2816 if (n
< 0 && scrolled
> 0)
2818 --curwin
->w_topline
;
2820 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
2823 curwin
->w_topfill
= 0;
2826 curwin
->w_valid
&= ~(VALID_CROW
|VALID_WROW
|
2827 VALID_BOTLINE
|VALID_BOTLINE_AP
);
2829 #ifndef KEEP_SCREEN_LINE
2830 if (curwin
->w_cursor
.lnum
> 1)
2832 --curwin
->w_cursor
.lnum
;
2833 curwin
->w_valid
&= ~(VALID_VIRTCOL
|VALID_CHEIGHT
|VALID_WCOL
);
2837 #ifndef KEEP_SCREEN_LINE
2839 * When hit top of the file: move cursor up.
2843 if (curwin
->w_cursor
.lnum
<= (linenr_T
)n
)
2844 curwin
->w_cursor
.lnum
= 1;
2846 # ifdef FEAT_FOLDING
2847 if (hasAnyFolding(curwin
))
2849 while (--n
>= 0 && curwin
->w_cursor
.lnum
> 1)
2851 --curwin
->w_cursor
.lnum
;
2852 (void)hasFolding(curwin
->w_cursor
.lnum
,
2853 &curwin
->w_cursor
.lnum
, NULL
);
2858 curwin
->w_cursor
.lnum
-= n
;
2861 /* try to put the cursor in the same screen line */
2862 scrolled
+= n
; /* move cursor when topline is 1 */
2863 while (curwin
->w_cursor
.lnum
> curwin
->w_topline
2864 && (scrolled
> 0 || curwin
->w_cursor
.lnum
>= curwin
->w_botline
))
2866 scrolled
-= plines(curwin
->w_cursor
.lnum
- 1);
2867 if (scrolled
< 0 && curwin
->w_cursor
.lnum
< curwin
->w_botline
)
2869 --curwin
->w_cursor
.lnum
;
2870 # ifdef FEAT_FOLDING
2876 # ifdef FEAT_FOLDING
2877 /* Move cursor to first line of closed fold. */
2881 check_topfill(curwin
, !flag
);
2884 beginline(BL_SOL
| BL_FIX
);
2885 redraw_later(VALID
);