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()
894 if (!(curwin
->w_valid
& VALID_WCOL
))
896 col
= curwin
->w_virtcol
;
897 off
= curwin_col_off();
900 /* long line wrapping, adjust curwin->w_wrow */
902 && col
>= (colnr_T
)W_WIDTH(curwin
)
903 && W_WIDTH(curwin
) - off
+ curwin_col_off2() > 0)
905 col
-= W_WIDTH(curwin
);
906 col
= col
% (W_WIDTH(curwin
) - off
+ curwin_col_off2());
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 line number, fold column and sign
920 * column (these don't move when scrolling horizontally).
926 return ((wp
->w_p_nu
? 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' is on and 'n' is in 'cpoptions'.
958 if (wp
->w_p_nu
&& vim_strchr(p_cpo
, CPO_NUMCOL
) != NULL
)
959 return number_width(wp
) + 1;
966 return win_col_off2(curwin
);
970 * compute curwin->w_wcol and curwin->w_virtcol.
971 * Also updates curwin->w_wrow and curwin->w_cline_row.
972 * Also updates curwin->w_leftcol.
976 int scroll
; /* when TRUE, may scroll horizontally */
979 int extra
; /* offset for first screen line */
980 int off_left
, off_right
;
988 colnr_T prev_skipcol
;
991 * First make sure that w_topline is valid (after moving the cursor).
996 * Next make sure that w_cline_row is valid.
998 if (!(curwin
->w_valid
& VALID_CROW
))
999 curs_rows(curwin
, FALSE
);
1002 * Compute the number of virtual columns.
1005 if (curwin
->w_cline_folded
)
1006 /* In a folded line the cursor is always in the first column */
1007 startcol
= curwin
->w_virtcol
= endcol
= curwin
->w_leftcol
;
1010 getvvcol(curwin
, &curwin
->w_cursor
,
1011 &startcol
, &(curwin
->w_virtcol
), &endcol
);
1013 /* remove '$' from change command when cursor moves onto it */
1014 if (startcol
> dollar_vcol
)
1017 extra
= curwin_col_off();
1018 curwin
->w_wcol
= curwin
->w_virtcol
+ extra
;
1022 * Now compute w_wrow, counting screen lines from w_cline_row.
1024 curwin
->w_wrow
= curwin
->w_cline_row
;
1026 textwidth
= W_WIDTH(curwin
) - extra
;
1029 /* No room for text, put cursor in last char of window. */
1030 curwin
->w_wcol
= W_WIDTH(curwin
) - 1;
1031 curwin
->w_wrow
= curwin
->w_height
- 1;
1033 else if (curwin
->w_p_wrap
1034 #ifdef FEAT_VERTSPLIT
1035 && curwin
->w_width
!= 0
1039 width
= textwidth
+ curwin_col_off2();
1041 /* long line wrapping, adjust curwin->w_wrow */
1042 if (curwin
->w_wcol
>= W_WIDTH(curwin
))
1044 n
= (curwin
->w_wcol
- W_WIDTH(curwin
)) / width
+ 1;
1045 curwin
->w_wcol
-= n
* width
;
1046 curwin
->w_wrow
+= n
;
1048 #ifdef FEAT_LINEBREAK
1049 /* When cursor wraps to first char of next line in Insert
1050 * mode, the 'showbreak' string isn't shown, backup to first
1052 if (*p_sbr
&& *ml_get_cursor() == NUL
1053 && curwin
->w_wcol
== (int)vim_strsize(p_sbr
))
1059 /* No line wrapping: compute curwin->w_leftcol if scrolling is on and line
1061 * If scrolling is off, curwin->w_leftcol is assumed to be 0 */
1064 && !curwin
->w_cline_folded
1069 * If Cursor is left of the screen, scroll rightwards.
1070 * If Cursor is right of the screen, scroll leftwards
1071 * If we get closer to the edge than 'sidescrolloff', scroll a little
1074 off_left
= (int)startcol
- (int)curwin
->w_leftcol
- p_siso
;
1075 off_right
= (int)endcol
- (int)(curwin
->w_leftcol
+ W_WIDTH(curwin
)
1077 if (off_left
< 0 || off_right
> 0)
1084 /* When far off or not enough room on either side, put cursor in
1085 * middle of window. */
1086 if (p_ss
== 0 || diff
>= textwidth
/ 2 || off_right
>= off_left
)
1087 new_leftcol
= curwin
->w_wcol
- extra
- textwidth
/ 2;
1093 new_leftcol
= curwin
->w_leftcol
- diff
;
1095 new_leftcol
= curwin
->w_leftcol
+ diff
;
1097 if (new_leftcol
< 0)
1099 if (new_leftcol
!= (int)curwin
->w_leftcol
)
1101 curwin
->w_leftcol
= new_leftcol
;
1102 /* screen has to be redrawn with new curwin->w_leftcol */
1103 redraw_later(NOT_VALID
);
1106 curwin
->w_wcol
-= curwin
->w_leftcol
;
1108 else if (curwin
->w_wcol
> (int)curwin
->w_leftcol
)
1109 curwin
->w_wcol
-= curwin
->w_leftcol
;
1114 /* Skip over filler lines. At the top use w_topfill, there
1115 * may be some filler lines above the window. */
1116 if (curwin
->w_cursor
.lnum
== curwin
->w_topline
)
1117 curwin
->w_wrow
+= curwin
->w_topfill
;
1119 curwin
->w_wrow
+= diff_check_fill(curwin
, curwin
->w_cursor
.lnum
);
1122 prev_skipcol
= curwin
->w_skipcol
;
1125 if ((curwin
->w_wrow
>= curwin
->w_height
1126 || ((prev_skipcol
> 0
1127 || curwin
->w_wrow
+ p_so
>= curwin
->w_height
)
1134 (curwin
, curwin
->w_cursor
.lnum
, FALSE
))
1135 - 1 >= curwin
->w_height
))
1136 && curwin
->w_height
!= 0
1137 && curwin
->w_cursor
.lnum
== curwin
->w_topline
1139 #ifdef FEAT_VERTSPLIT
1140 && curwin
->w_width
!= 0
1144 /* Cursor past end of screen. Happens with a single line that does
1145 * not fit on screen. Find a skipcol to show the text around the
1146 * cursor. Avoid scrolling all the time. compute value of "extra":
1147 * 1: Less than "p_so" lines above
1148 * 2: Less than "p_so" lines below
1149 * 3: both of them */
1151 if (curwin
->w_skipcol
+ p_so
* width
> curwin
->w_virtcol
)
1153 /* Compute last display line of the buffer line that we want at the
1154 * bottom of the window. */
1156 p_lines
= plines_win(curwin
, curwin
->w_cursor
.lnum
, FALSE
);
1158 if (p_lines
> curwin
->w_wrow
+ p_so
)
1159 n
= curwin
->w_wrow
+ p_so
;
1162 if ((colnr_T
)n
>= curwin
->w_height
+ curwin
->w_skipcol
/ width
)
1165 if (extra
== 3 || p_lines
< p_so
* 2)
1167 /* not enough room for 'scrolloff', put cursor in the middle */
1168 n
= curwin
->w_virtcol
/ width
;
1169 if (n
> curwin
->w_height
/ 2)
1170 n
-= curwin
->w_height
/ 2;
1173 /* don't skip more than necessary */
1174 if (n
> p_lines
- curwin
->w_height
+ 1)
1175 n
= p_lines
- curwin
->w_height
+ 1;
1176 curwin
->w_skipcol
= n
* width
;
1178 else if (extra
== 1)
1180 /* less then 'scrolloff' lines above, decrease skipcol */
1181 extra
= (curwin
->w_skipcol
+ p_so
* width
- curwin
->w_virtcol
1182 + width
- 1) / width
;
1185 if ((colnr_T
)(extra
* width
) > curwin
->w_skipcol
)
1186 extra
= curwin
->w_skipcol
/ width
;
1187 curwin
->w_skipcol
-= extra
* width
;
1190 else if (extra
== 2)
1192 /* less then 'scrolloff' lines below, increase skipcol */
1193 endcol
= (n
- curwin
->w_height
+ 1) * width
;
1194 while (endcol
> curwin
->w_virtcol
)
1196 if (endcol
> curwin
->w_skipcol
)
1197 curwin
->w_skipcol
= endcol
;
1200 curwin
->w_wrow
-= curwin
->w_skipcol
/ width
;
1201 if (curwin
->w_wrow
>= curwin
->w_height
)
1203 /* small window, make sure cursor is in it */
1204 extra
= curwin
->w_wrow
- curwin
->w_height
+ 1;
1205 curwin
->w_skipcol
+= extra
* width
;
1206 curwin
->w_wrow
-= extra
;
1209 extra
= ((int)prev_skipcol
- (int)curwin
->w_skipcol
) / width
;
1211 win_ins_lines(curwin
, 0, extra
, FALSE
, FALSE
);
1213 win_del_lines(curwin
, 0, -extra
, FALSE
, FALSE
);
1216 curwin
->w_skipcol
= 0;
1217 if (prev_skipcol
!= curwin
->w_skipcol
)
1218 redraw_later(NOT_VALID
);
1221 /* Redraw when w_virtcol changes and 'cursorcolumn' is set, or when w_row
1222 * changes and 'cursorline' is set. */
1223 if (((curwin
->w_p_cuc
&& (curwin
->w_valid
& VALID_VIRTCOL
) == 0)
1224 || (curwin
->w_p_cul
&& (curwin
->w_valid
& VALID_WROW
) == 0))
1225 # ifdef FEAT_INS_EXPAND
1229 redraw_later(SOME_VALID
);
1232 curwin
->w_valid
|= VALID_WCOL
|VALID_WROW
|VALID_VIRTCOL
;
1236 * Scroll the current window down by "line_count" logical lines. "CTRL-Y"
1239 scrolldown(line_count
, byfold
)
1241 int byfold UNUSED
; /* TRUE: count a closed fold as one line */
1243 long done
= 0; /* total # of physical lines done */
1250 /* Make sure w_topline is at the first of a sequence of folded lines. */
1251 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
1253 validate_cursor(); /* w_wrow needs to be valid */
1254 while (line_count
-- > 0)
1257 if (curwin
->w_topfill
< diff_check(curwin
, curwin
->w_topline
)
1258 && curwin
->w_topfill
< curwin
->w_height
- 1)
1260 ++curwin
->w_topfill
;
1266 if (curwin
->w_topline
== 1)
1268 --curwin
->w_topline
;
1270 curwin
->w_topfill
= 0;
1273 /* A sequence of folded lines only counts for one logical line */
1274 if (hasFolding(curwin
->w_topline
, &first
, NULL
))
1278 line_count
-= curwin
->w_topline
- first
- 1;
1279 curwin
->w_botline
-= curwin
->w_topline
- first
;
1280 curwin
->w_topline
= first
;
1285 done
+= plines_nofill(curwin
->w_topline
);
1287 done
+= plines(curwin
->w_topline
);
1290 --curwin
->w_botline
; /* approximate w_botline */
1291 invalidate_botline();
1293 curwin
->w_wrow
+= done
; /* keep w_wrow updated */
1294 curwin
->w_cline_row
+= done
; /* keep w_cline_row updated */
1297 if (curwin
->w_cursor
.lnum
== curwin
->w_topline
)
1298 curwin
->w_cline_row
= 0;
1299 check_topfill(curwin
, TRUE
);
1303 * Compute the row number of the last row of the cursor line
1304 * and move the cursor onto the displayed part of the window.
1306 wrow
= curwin
->w_wrow
;
1307 if (curwin
->w_p_wrap
1308 #ifdef FEAT_VERTSPLIT
1309 && curwin
->w_width
!= 0
1315 wrow
+= curwin
->w_cline_height
- 1 -
1316 curwin
->w_virtcol
/ W_WIDTH(curwin
);
1318 while (wrow
>= curwin
->w_height
&& curwin
->w_cursor
.lnum
> 1)
1321 if (hasFolding(curwin
->w_cursor
.lnum
, &first
, NULL
))
1325 curwin
->w_cursor
.lnum
= 1;
1327 curwin
->w_cursor
.lnum
= first
- 1;
1331 wrow
-= plines(curwin
->w_cursor
.lnum
--);
1333 ~(VALID_WROW
|VALID_WCOL
|VALID_CHEIGHT
|VALID_CROW
|VALID_VIRTCOL
);
1339 /* Move cursor to first line of closed fold. */
1342 coladvance(curwin
->w_curswant
);
1347 * Scroll the current window up by "line_count" logical lines. "CTRL-E"
1350 scrollup(line_count
, byfold
)
1352 int byfold UNUSED
; /* TRUE: count a closed fold as one line */
1354 #if defined(FEAT_FOLDING) || defined(FEAT_DIFF)
1358 # ifdef FEAT_FOLDING
1359 (byfold
&& hasAnyFolding(curwin
))
1369 /* count each sequence of folded lines as one logical line */
1370 lnum
= curwin
->w_topline
;
1371 while (line_count
--)
1374 if (curwin
->w_topfill
> 0)
1375 --curwin
->w_topfill
;
1379 # ifdef FEAT_FOLDING
1381 (void)hasFolding(lnum
, NULL
, &lnum
);
1383 if (lnum
>= curbuf
->b_ml
.ml_line_count
)
1387 curwin
->w_topfill
= diff_check_fill(curwin
, lnum
);
1391 /* approximate w_botline */
1392 curwin
->w_botline
+= lnum
- curwin
->w_topline
;
1393 curwin
->w_topline
= lnum
;
1398 curwin
->w_topline
+= line_count
;
1399 curwin
->w_botline
+= line_count
; /* approximate w_botline */
1402 if (curwin
->w_topline
> curbuf
->b_ml
.ml_line_count
)
1403 curwin
->w_topline
= curbuf
->b_ml
.ml_line_count
;
1404 if (curwin
->w_botline
> curbuf
->b_ml
.ml_line_count
+ 1)
1405 curwin
->w_botline
= curbuf
->b_ml
.ml_line_count
+ 1;
1408 check_topfill(curwin
, FALSE
);
1412 if (hasAnyFolding(curwin
))
1413 /* Make sure w_topline is at the first of a sequence of folded lines. */
1414 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
1417 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
1418 if (curwin
->w_cursor
.lnum
< curwin
->w_topline
)
1420 curwin
->w_cursor
.lnum
= curwin
->w_topline
;
1422 ~(VALID_WROW
|VALID_WCOL
|VALID_CHEIGHT
|VALID_CROW
|VALID_VIRTCOL
);
1423 coladvance(curwin
->w_curswant
);
1429 * Don't end up with too many filler lines in the window.
1432 check_topfill(wp
, down
)
1434 int down
; /* when TRUE scroll down when not enough space */
1438 if (wp
->w_topfill
> 0)
1440 n
= plines_win_nofill(wp
, wp
->w_topline
, TRUE
);
1441 if (wp
->w_topfill
+ n
> wp
->w_height
)
1443 if (down
&& wp
->w_topline
> 1)
1450 wp
->w_topfill
= wp
->w_height
- n
;
1451 if (wp
->w_topfill
< 0)
1459 * Use as many filler lines as possible for w_topline. Make sure w_topline
1467 n
= plines_nofill(curwin
->w_topline
);
1468 if (n
>= curwin
->w_height
)
1469 curwin
->w_topfill
= 0;
1472 curwin
->w_topfill
= diff_check_fill(curwin
, curwin
->w_topline
);
1473 if (curwin
->w_topfill
+ n
> curwin
->w_height
)
1474 curwin
->w_topfill
= curwin
->w_height
- n
;
1479 #if defined(FEAT_INS_EXPAND) || defined(PROTO)
1481 * Scroll the screen one line down, but don't do it if it would move the
1482 * cursor off the screen.
1489 int can_fill
= (curwin
->w_topfill
1490 < diff_check_fill(curwin
, curwin
->w_topline
));
1493 if (curwin
->w_topline
<= 1
1500 validate_cursor(); /* w_wrow needs to be valid */
1503 * Compute the row number of the last row of the cursor line
1504 * and make sure it doesn't go off the screen. Make sure the cursor
1505 * doesn't go past 'scrolloff' lines from the screen end.
1507 end_row
= curwin
->w_wrow
;
1512 end_row
+= plines_nofill(curwin
->w_topline
- 1);
1514 end_row
+= plines(curwin
->w_topline
- 1);
1516 if (curwin
->w_p_wrap
1517 #ifdef FEAT_VERTSPLIT
1518 && curwin
->w_width
!= 0
1524 end_row
+= curwin
->w_cline_height
- 1 -
1525 curwin
->w_virtcol
/ W_WIDTH(curwin
);
1527 if (end_row
< curwin
->w_height
- p_so
)
1532 ++curwin
->w_topfill
;
1533 check_topfill(curwin
, TRUE
);
1537 --curwin
->w_topline
;
1538 curwin
->w_topfill
= 0;
1541 --curwin
->w_topline
;
1544 hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
1546 --curwin
->w_botline
; /* approximate w_botline */
1547 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
1552 * Scroll the screen one line up, but don't do it if it would move the cursor
1560 if (curwin
->w_topline
== curbuf
->b_ml
.ml_line_count
1562 && curwin
->w_topfill
== 0
1567 validate_cursor(); /* w_wrow needs to be valid */
1570 * Compute the row number of the first row of the cursor line
1571 * and make sure it doesn't go off the screen. Make sure the cursor
1572 * doesn't go before 'scrolloff' lines from the screen start.
1575 start_row
= curwin
->w_wrow
- plines_nofill(curwin
->w_topline
)
1576 - curwin
->w_topfill
;
1578 start_row
= curwin
->w_wrow
- plines(curwin
->w_topline
);
1580 if (curwin
->w_p_wrap
1581 #ifdef FEAT_VERTSPLIT
1582 && curwin
->w_width
!= 0
1587 start_row
-= curwin
->w_virtcol
/ W_WIDTH(curwin
);
1589 if (start_row
>= p_so
)
1592 if (curwin
->w_topfill
> 0)
1593 --curwin
->w_topfill
;
1598 (void)hasFolding(curwin
->w_topline
, NULL
, &curwin
->w_topline
);
1600 ++curwin
->w_topline
;
1602 ++curwin
->w_botline
; /* approximate w_botline */
1603 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
1606 #endif /* FEAT_INS_EXPAND */
1609 * Add one line above "lp->lnum". This can be a filler line, a closed fold or
1610 * a (wrapped) text line. Uses and sets "lp->fill".
1611 * Returns the height of the added line in "lp->height".
1612 * Lines above the first one are incredibly high.
1619 if (lp
->fill
< diff_check_fill(curwin
, lp
->lnum
))
1621 /* Add a filler line. */
1633 lp
->height
= MAXCOL
;
1636 if (hasFolding(lp
->lnum
, &lp
->lnum
, NULL
))
1637 /* Add a closed fold */
1643 lp
->height
= plines_nofill(lp
->lnum
);
1645 lp
->height
= plines(lp
->lnum
);
1652 * Add one line below "lp->lnum". This can be a filler line, a closed fold or
1653 * a (wrapped) text line. Uses and sets "lp->fill".
1654 * Returns the height of the added line in "lp->height".
1655 * Lines below the last one are incredibly high.
1662 if (lp
->fill
< diff_check_fill(curwin
, lp
->lnum
+ 1))
1664 /* Add a filler line. */
1675 if (lp
->lnum
> curbuf
->b_ml
.ml_line_count
)
1676 lp
->height
= MAXCOL
;
1679 if (hasFolding(lp
->lnum
, NULL
, &lp
->lnum
))
1680 /* Add a closed fold */
1686 lp
->height
= plines_nofill(lp
->lnum
);
1688 lp
->height
= plines(lp
->lnum
);
1696 * Switch from including filler lines below lp->lnum to including filler
1697 * lines above loff.lnum + 1. This keeps pointing to the same line.
1698 * When there are no filler lines nothing changes.
1707 lp
->fill
= diff_check_fill(curwin
, lp
->lnum
) - lp
->fill
+ 1;
1712 * Switch from including filler lines above lp->lnum to including filler
1713 * lines below loff.lnum - 1. This keeps pointing to the same line.
1714 * When there are no filler lines nothing changes.
1722 lp
->fill
= diff_check_fill(curwin
, lp
->lnum
) - lp
->fill
+ 1;
1729 * Recompute topline to put the cursor at the top of the window.
1730 * Scroll at least "min_scroll" lines.
1731 * If "always" is TRUE, always set topline (for "zt").
1734 scroll_cursor_top(min_scroll
, always
)
1742 linenr_T top
; /* just above displayed lines */
1743 linenr_T bot
; /* just below displayed lines */
1744 linenr_T old_topline
= curwin
->w_topline
;
1746 linenr_T old_topfill
= curwin
->w_topfill
;
1748 linenr_T new_topline
;
1752 if (mouse_dragging
> 0)
1753 off
= mouse_dragging
- 1;
1757 * Decrease topline until:
1759 * - (part of) the cursor line is moved off the screen or
1760 * - moved at least 'scrolljump' lines and
1761 * - at least 'scrolloff' lines above and below the cursor
1764 used
= curwin
->w_cline_height
;
1765 if (curwin
->w_cursor
.lnum
< curwin
->w_topline
)
1769 if (hasFolding(curwin
->w_cursor
.lnum
, &top
, &bot
))
1777 top
= curwin
->w_cursor
.lnum
- 1;
1778 bot
= curwin
->w_cursor
.lnum
+ 1;
1780 new_topline
= top
+ 1;
1783 /* count filler lines of the cursor window as context */
1784 i
= diff_check_fill(curwin
, curwin
->w_cursor
.lnum
);
1790 * Check if the lines from "top" to "bot" fit in the window. If they do,
1791 * set new_topline and advance "top" and "bot" to include more lines.
1796 if (hasFolding(top
, &top
, NULL
))
1797 /* count one logical line for a sequence of folded lines */
1803 if (extra
+ i
<= off
&& bot
< curbuf
->b_ml
.ml_line_count
)
1806 if (hasFolding(bot
, NULL
, &bot
))
1807 /* count one logical line for a sequence of folded lines */
1811 used
+= plines(bot
);
1813 if (used
> curwin
->w_height
)
1815 if (top
< curwin
->w_topline
)
1819 * If scrolling is needed, scroll at least 'sj' lines.
1821 if ((new_topline
>= curwin
->w_topline
|| scrolled
> min_scroll
)
1832 * If we don't have enough space, put cursor in the middle.
1833 * This makes sure we get the same position when using "k" and "j"
1834 * in a small window.
1836 if (used
> curwin
->w_height
)
1837 scroll_cursor_halfway(FALSE
);
1841 * If "always" is FALSE, only adjust topline to a lower value, higher
1842 * value may happen with wrapping lines
1844 if (new_topline
< curwin
->w_topline
|| always
)
1845 curwin
->w_topline
= new_topline
;
1846 if (curwin
->w_topline
> curwin
->w_cursor
.lnum
)
1847 curwin
->w_topline
= curwin
->w_cursor
.lnum
;
1849 curwin
->w_topfill
= diff_check_fill(curwin
, curwin
->w_topline
);
1850 if (curwin
->w_topfill
> 0 && extra
> off
)
1852 curwin
->w_topfill
-= extra
- off
;
1853 if (curwin
->w_topfill
< 0)
1854 curwin
->w_topfill
= 0;
1856 check_topfill(curwin
, FALSE
);
1858 if (curwin
->w_topline
!= old_topline
1860 || curwin
->w_topfill
!= old_topfill
1864 ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
|VALID_BOTLINE_AP
);
1865 curwin
->w_valid
|= VALID_TOPLINE
;
1870 * Set w_empty_rows and w_filler_rows for window "wp", having used up "used"
1871 * screen lines for text lines.
1874 set_empty_rows(wp
, used
)
1879 wp
->w_filler_rows
= 0;
1882 wp
->w_empty_rows
= 0; /* single line that doesn't fit */
1885 wp
->w_empty_rows
= wp
->w_height
- used
;
1887 if (wp
->w_botline
<= wp
->w_buffer
->b_ml
.ml_line_count
)
1889 wp
->w_filler_rows
= diff_check_fill(wp
, wp
->w_botline
);
1890 if (wp
->w_empty_rows
> wp
->w_filler_rows
)
1891 wp
->w_empty_rows
-= wp
->w_filler_rows
;
1894 wp
->w_filler_rows
= wp
->w_empty_rows
;
1895 wp
->w_empty_rows
= 0;
1903 * Recompute topline to put the cursor at the bottom of the window.
1904 * Scroll at least "min_scroll" lines.
1905 * If "set_topbot" is TRUE, set topline and botline first (for "zb").
1906 * This is messy stuff!!!
1909 scroll_cursor_bot(min_scroll
, set_topbot
)
1917 linenr_T line_count
;
1918 linenr_T old_topline
= curwin
->w_topline
;
1922 int old_topfill
= curwin
->w_topfill
;
1923 int fill_below_window
;
1925 linenr_T old_botline
= curwin
->w_botline
;
1926 linenr_T old_valid
= curwin
->w_valid
;
1927 int old_empty_rows
= curwin
->w_empty_rows
;
1928 linenr_T cln
; /* Cursor Line Number */
1930 cln
= curwin
->w_cursor
.lnum
;
1934 curwin
->w_botline
= cln
+ 1;
1938 for (curwin
->w_topline
= curwin
->w_botline
;
1939 curwin
->w_topline
> 1;
1940 curwin
->w_topline
= loff
.lnum
)
1942 loff
.lnum
= curwin
->w_topline
;
1943 topline_back(&loff
);
1944 if (used
+ loff
.height
> curwin
->w_height
)
1946 used
+= loff
.height
;
1948 curwin
->w_topfill
= loff
.fill
;
1951 set_empty_rows(curwin
, used
);
1952 curwin
->w_valid
|= VALID_BOTLINE
|VALID_BOTLINE_AP
;
1953 if (curwin
->w_topline
!= old_topline
1955 || curwin
->w_topfill
!= old_topfill
1958 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
);
1963 /* The lines of the cursor line itself are always used. */
1965 used
= plines_nofill(cln
);
1968 used
= curwin
->w_cline_height
;
1971 /* If the cursor is below botline, we will at least scroll by the height
1972 * of the cursor line. Correct for empty lines, which are really part of
1974 if (cln
>= curwin
->w_botline
)
1977 if (cln
== curwin
->w_botline
)
1978 scrolled
-= curwin
->w_empty_rows
;
1982 * Stop counting lines to scroll when
1983 * - hitting start of the file
1984 * - scrolled nothing or at least 'sj' lines
1985 * - at least 'so' lines below the cursor
1986 * - lines between botline and cursor have been counted
1989 if (!hasFolding(curwin
->w_cursor
.lnum
, &loff
.lnum
, &boff
.lnum
))
1998 fill_below_window
= diff_check_fill(curwin
, curwin
->w_botline
)
1999 - curwin
->w_filler_rows
;
2002 while (loff
.lnum
> 1)
2004 /* Stop when scrolled nothing or at least "min_scroll", found "extra"
2005 * context for 'scrolloff' and counted all lines below the window. */
2006 if ((((scrolled
<= 0 || scrolled
>= min_scroll
)
2009 mouse_dragging
> 0 ? mouse_dragging
- 1 :
2012 || boff
.lnum
+ 1 > curbuf
->b_ml
.ml_line_count
)
2013 && loff
.lnum
<= curwin
->w_botline
2015 && (loff
.lnum
< curwin
->w_botline
2016 || loff
.fill
>= fill_below_window
)
2021 /* Add one line above */
2022 topline_back(&loff
);
2023 used
+= loff
.height
;
2024 if (used
> curwin
->w_height
)
2026 if (loff
.lnum
>= curwin
->w_botline
2028 && (loff
.lnum
> curwin
->w_botline
2029 || loff
.fill
<= fill_below_window
)
2033 /* Count screen lines that are below the window. */
2034 scrolled
+= loff
.height
;
2035 if (loff
.lnum
== curwin
->w_botline
2040 scrolled
-= curwin
->w_empty_rows
;
2043 if (boff
.lnum
< curbuf
->b_ml
.ml_line_count
)
2045 /* Add one line below */
2046 botline_forw(&boff
);
2047 used
+= boff
.height
;
2048 if (used
> curwin
->w_height
)
2052 mouse_dragging
> 0 ? mouse_dragging
- 1 :
2054 p_so
) || scrolled
< min_scroll
)
2056 extra
+= boff
.height
;
2057 if (boff
.lnum
>= curwin
->w_botline
2059 || (boff
.lnum
+ 1 == curwin
->w_botline
2060 && boff
.fill
> curwin
->w_filler_rows
)
2064 /* Count screen lines that are below the window. */
2065 scrolled
+= boff
.height
;
2066 if (boff
.lnum
== curwin
->w_botline
2071 scrolled
-= curwin
->w_empty_rows
;
2077 /* curwin->w_empty_rows is larger, no need to scroll */
2080 /* more than a screenfull, don't scroll but redraw */
2081 else if (used
> curwin
->w_height
)
2083 /* scroll minimal number of lines */
2088 boff
.fill
= curwin
->w_topfill
;
2090 boff
.lnum
= curwin
->w_topline
- 1;
2091 for (i
= 0; i
< scrolled
&& boff
.lnum
< curwin
->w_botline
; )
2093 botline_forw(&boff
);
2097 if (i
< scrolled
) /* below curwin->w_botline, don't scroll */
2102 * Scroll up if the cursor is off the bottom of the screen a bit.
2103 * Otherwise put it at 1/2 of the screen.
2105 if (line_count
>= curwin
->w_height
&& line_count
> min_scroll
)
2106 scroll_cursor_halfway(FALSE
);
2108 scrollup(line_count
, TRUE
);
2111 * If topline didn't change we need to restore w_botline and w_empty_rows
2112 * (we changed them).
2113 * If topline did change, update_screen() will set botline.
2115 if (curwin
->w_topline
== old_topline
&& set_topbot
)
2117 curwin
->w_botline
= old_botline
;
2118 curwin
->w_empty_rows
= old_empty_rows
;
2119 curwin
->w_valid
= old_valid
;
2121 curwin
->w_valid
|= VALID_TOPLINE
;
2125 * Recompute topline to put the cursor halfway the window
2126 * If "atend" is TRUE, also put it halfway at the end of the file.
2129 scroll_cursor_halfway(atend
)
2142 loff
.lnum
= boff
.lnum
= curwin
->w_cursor
.lnum
;
2144 (void)hasFolding(loff
.lnum
, &loff
.lnum
, &boff
.lnum
);
2147 used
= plines_nofill(loff
.lnum
);
2151 used
= plines(loff
.lnum
);
2153 topline
= loff
.lnum
;
2156 if (below
<= above
) /* add a line below the cursor first */
2158 if (boff
.lnum
< curbuf
->b_ml
.ml_line_count
)
2160 botline_forw(&boff
);
2161 used
+= boff
.height
;
2162 if (used
> curwin
->w_height
)
2164 below
+= boff
.height
;
2168 ++below
; /* count a "~" line */
2174 if (below
> above
) /* add a line above the cursor */
2176 topline_back(&loff
);
2177 used
+= loff
.height
;
2178 if (used
> curwin
->w_height
)
2180 above
+= loff
.height
;
2181 topline
= loff
.lnum
;
2183 topfill
= loff
.fill
;
2188 if (!hasFolding(topline
, &curwin
->w_topline
, NULL
))
2190 curwin
->w_topline
= topline
;
2192 curwin
->w_topfill
= topfill
;
2193 check_topfill(curwin
, FALSE
);
2195 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
|VALID_BOTLINE_AP
);
2196 curwin
->w_valid
|= VALID_TOPLINE
;
2200 * Correct the cursor position so that it is in a part of the screen at least
2201 * 'so' lines from the top and bottom, if possible.
2202 * If not possible, put it at the same position as scroll_cursor_halfway().
2203 * When called topline must be valid!
2208 int above
= 0; /* screen lines above topline */
2210 int below
= 0; /* screen lines below botline */
2212 int above_wanted
, below_wanted
;
2213 linenr_T cln
; /* Cursor Line Number */
2217 * How many lines we would like to have above/below the cursor depends on
2218 * whether the first/last line of the file is on screen.
2220 above_wanted
= p_so
;
2221 below_wanted
= p_so
;
2223 if (mouse_dragging
> 0)
2225 above_wanted
= mouse_dragging
- 1;
2226 below_wanted
= mouse_dragging
- 1;
2229 if (curwin
->w_topline
== 1)
2232 max_off
= curwin
->w_height
/ 2;
2233 if (below_wanted
> max_off
)
2234 below_wanted
= max_off
;
2237 if (curwin
->w_botline
== curbuf
->b_ml
.ml_line_count
+ 1
2239 && mouse_dragging
== 0
2244 max_off
= (curwin
->w_height
- 1) / 2;
2245 if (above_wanted
> max_off
)
2246 above_wanted
= max_off
;
2250 * If there are sufficient file-lines above and below the cursor, we can
2253 cln
= curwin
->w_cursor
.lnum
;
2254 if (cln
>= curwin
->w_topline
+ above_wanted
2255 && cln
< curwin
->w_botline
- below_wanted
2257 && !hasAnyFolding(curwin
)
2263 * Narrow down the area where the cursor can be put by taking lines from
2264 * the top and the bottom until:
2265 * - the desired context lines are found
2266 * - the lines from the top is past the lines from the bottom
2268 topline
= curwin
->w_topline
;
2269 botline
= curwin
->w_botline
- 1;
2271 /* count filler lines as context */
2272 above
= curwin
->w_topfill
;
2273 below
= curwin
->w_filler_rows
;
2275 while ((above
< above_wanted
|| below
< below_wanted
) && topline
< botline
)
2277 if (below
< below_wanted
&& (below
<= above
|| above
>= above_wanted
))
2280 if (hasFolding(botline
, &botline
, NULL
))
2284 below
+= plines(botline
);
2287 if (above
< above_wanted
&& (above
< below
|| below
>= below_wanted
))
2290 if (hasFolding(topline
, NULL
, &topline
))
2295 above
+= plines(topline
);
2297 above
+= plines_nofill(topline
);
2299 /* Count filler lines below this line as context. */
2300 if (topline
< botline
)
2301 above
+= diff_check_fill(curwin
, topline
+ 1);
2306 if (topline
== botline
|| botline
== 0)
2307 curwin
->w_cursor
.lnum
= topline
;
2308 else if (topline
> botline
)
2309 curwin
->w_cursor
.lnum
= botline
;
2312 if (cln
< topline
&& curwin
->w_topline
> 1)
2314 curwin
->w_cursor
.lnum
= topline
;
2316 ~(VALID_WROW
|VALID_WCOL
|VALID_CHEIGHT
|VALID_CROW
);
2318 if (cln
> botline
&& curwin
->w_botline
<= curbuf
->b_ml
.ml_line_count
)
2320 curwin
->w_cursor
.lnum
= botline
;
2322 ~(VALID_WROW
|VALID_WCOL
|VALID_CHEIGHT
|VALID_CROW
);
2325 curwin
->w_valid
|= VALID_TOPLINE
;
2328 static void get_scroll_overlap
__ARGS((lineoff_T
*lp
, int dir
));
2331 * move screen 'count' pages up or down and update screen
2333 * return FAIL for failure, OK otherwise
2343 linenr_T old_topline
= curwin
->w_topline
;
2345 if (curbuf
->b_ml
.ml_line_count
== 1) /* nothing to do */
2351 for ( ; count
> 0; --count
)
2355 * It's an error to move a page up when the first line is already on
2356 * the screen. It's an error to move a page down when the last line
2357 * is on the screen and the topline is 'scrolloff' lines from the
2361 ? ((curwin
->w_topline
>= curbuf
->b_ml
.ml_line_count
- p_so
)
2362 && curwin
->w_botline
> curbuf
->b_ml
.ml_line_count
)
2363 : (curwin
->w_topline
== 1
2365 && curwin
->w_topfill
==
2366 diff_check_fill(curwin
, curwin
->w_topline
)
2380 if (firstwin
== lastwin
&& p_window
> 0 && p_window
< Rows
- 1)
2382 /* Vi compatible scrolling */
2384 ++curwin
->w_topline
;
2386 curwin
->w_topline
+= p_window
- 2;
2387 if (curwin
->w_topline
> curbuf
->b_ml
.ml_line_count
)
2388 curwin
->w_topline
= curbuf
->b_ml
.ml_line_count
;
2389 curwin
->w_cursor
.lnum
= curwin
->w_topline
;
2391 else if (curwin
->w_botline
> curbuf
->b_ml
.ml_line_count
)
2393 /* at end of file */
2394 curwin
->w_topline
= curbuf
->b_ml
.ml_line_count
;
2396 curwin
->w_topfill
= 0;
2398 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
);
2402 /* For the overlap, start with the line just below the window
2403 * and go upwards. */
2404 loff
.lnum
= curwin
->w_botline
;
2406 loff
.fill
= diff_check_fill(curwin
, loff
.lnum
)
2407 - curwin
->w_filler_rows
;
2409 get_scroll_overlap(&loff
, -1);
2410 curwin
->w_topline
= loff
.lnum
;
2412 curwin
->w_topfill
= loff
.fill
;
2413 check_topfill(curwin
, FALSE
);
2415 curwin
->w_cursor
.lnum
= curwin
->w_topline
;
2416 curwin
->w_valid
&= ~(VALID_WCOL
|VALID_CHEIGHT
|VALID_WROW
|
2417 VALID_CROW
|VALID_BOTLINE
|VALID_BOTLINE_AP
);
2420 else /* dir == BACKWARDS */
2423 if (curwin
->w_topline
== 1)
2425 /* Include max number of filler lines */
2430 if (firstwin
== lastwin
&& p_window
> 0 && p_window
< Rows
- 1)
2432 /* Vi compatible scrolling (sort of) */
2434 --curwin
->w_topline
;
2436 curwin
->w_topline
-= p_window
- 2;
2437 if (curwin
->w_topline
< 1)
2438 curwin
->w_topline
= 1;
2439 curwin
->w_cursor
.lnum
= curwin
->w_topline
+ p_window
- 1;
2440 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
2441 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
2445 /* Find the line at the top of the window that is going to be the
2446 * line at the bottom of the window. Make sure this results in
2447 * the same line as before doing CTRL-F. */
2448 loff
.lnum
= curwin
->w_topline
- 1;
2450 loff
.fill
= diff_check_fill(curwin
, loff
.lnum
+ 1)
2451 - curwin
->w_topfill
;
2453 get_scroll_overlap(&loff
, 1);
2455 if (loff
.lnum
>= curbuf
->b_ml
.ml_line_count
)
2457 loff
.lnum
= curbuf
->b_ml
.ml_line_count
;
2463 botline_topline(&loff
);
2466 curwin
->w_cursor
.lnum
= loff
.lnum
;
2468 /* Find the line just above the new topline to get the right line
2469 * at the bottom of the window. */
2471 while (n
<= curwin
->w_height
&& loff
.lnum
>= 1)
2473 topline_back(&loff
);
2476 if (n
<= curwin
->w_height
) /* at begin of file */
2478 curwin
->w_topline
= 1;
2482 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
2486 /* Go two lines forward again. */
2488 topline_botline(&loff
);
2490 botline_forw(&loff
);
2491 botline_forw(&loff
);
2493 botline_topline(&loff
);
2496 /* We're at the wrong end of a fold now. */
2497 (void)hasFolding(loff
.lnum
, &loff
.lnum
, NULL
);
2500 /* Always scroll at least one line. Avoid getting stuck on
2501 * very long lines. */
2502 if (loff
.lnum
>= curwin
->w_topline
2504 && (loff
.lnum
> curwin
->w_topline
2505 || loff
.fill
>= curwin
->w_topfill
)
2510 /* First try using the maximum number of filler lines. If
2511 * that's not enough, backup one line. */
2512 loff
.fill
= curwin
->w_topfill
;
2513 if (curwin
->w_topfill
< diff_check_fill(curwin
,
2516 if (curwin
->w_topfill
== loff
.fill
)
2519 --curwin
->w_topline
;
2521 curwin
->w_topfill
= 0;
2524 comp_botline(curwin
);
2525 curwin
->w_cursor
.lnum
= curwin
->w_botline
- 1;
2526 curwin
->w_valid
&= ~(VALID_WCOL
|VALID_CHEIGHT
|
2527 VALID_WROW
|VALID_CROW
);
2531 curwin
->w_topline
= loff
.lnum
;
2533 curwin
->w_topfill
= loff
.fill
;
2534 check_topfill(curwin
, FALSE
);
2536 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
2546 beginline(BL_SOL
| BL_FIX
);
2547 curwin
->w_valid
&= ~(VALID_WCOL
|VALID_WROW
|VALID_VIRTCOL
);
2550 * Avoid the screen jumping up and down when 'scrolloff' is non-zero.
2551 * But make sure we scroll at least one line (happens with mix of long
2552 * wrapping lines and non-wrapping line).
2554 if (retval
== OK
&& dir
== FORWARD
&& check_top_offset())
2556 scroll_cursor_top(1, FALSE
);
2557 if (curwin
->w_topline
<= old_topline
2558 && old_topline
< curbuf
->b_ml
.ml_line_count
)
2560 curwin
->w_topline
= old_topline
+ 1;
2562 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
2567 redraw_later(VALID
);
2572 * Decide how much overlap to use for page-up or page-down scrolling.
2573 * This is symmetric, so that doing both keeps the same lines displayed.
2574 * Three lines are examined:
2576 * before CTRL-F after CTRL-F / before CTRL-B
2578 * l1 last but one line ------------
2579 * l2 last text line l2 top text line
2580 * ------------- l3 second text line
2584 get_scroll_overlap(lp
, dir
)
2589 int min_height
= curwin
->w_height
- 2;
2590 lineoff_T loff0
, loff1
, loff2
;
2596 lp
->height
= plines_nofill(lp
->lnum
);
2598 lp
->height
= plines(lp
->lnum
);
2601 if (h1
> min_height
)
2602 return; /* no overlap */
2610 if (h2
+ h1
> min_height
)
2612 *lp
= loff0
; /* no overlap */
2622 if (h3
+ h2
> min_height
)
2624 *lp
= loff0
; /* no overlap */
2634 if (h4
+ h3
+ h2
> min_height
|| h3
+ h2
+ h1
> min_height
)
2635 *lp
= loff1
; /* 1 line overlap */
2637 *lp
= loff2
; /* 2 lines overlap */
2641 /* #define KEEP_SCREEN_LINE */
2643 * Scroll 'scroll' lines up or down.
2646 halfpage(flag
, Prenum
)
2656 curwin
->w_p_scr
= (Prenum
> curwin
->w_height
) ?
2657 curwin
->w_height
: Prenum
;
2658 n
= (curwin
->w_p_scr
<= curwin
->w_height
) ?
2659 curwin
->w_p_scr
: curwin
->w_height
;
2662 room
= curwin
->w_empty_rows
;
2664 room
+= curwin
->w_filler_rows
;
2669 * scroll the text up
2671 while (n
> 0 && curwin
->w_botline
<= curbuf
->b_ml
.ml_line_count
)
2674 if (curwin
->w_topfill
> 0)
2677 if (--n
< 0 && scrolled
> 0)
2679 --curwin
->w_topfill
;
2685 i
= plines_nofill(curwin
->w_topline
);
2687 i
= plines(curwin
->w_topline
);
2690 if (n
< 0 && scrolled
> 0)
2693 (void)hasFolding(curwin
->w_topline
, NULL
, &curwin
->w_topline
);
2695 ++curwin
->w_topline
;
2697 curwin
->w_topfill
= diff_check_fill(curwin
, curwin
->w_topline
);
2700 #ifndef KEEP_SCREEN_LINE
2701 if (curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
2703 ++curwin
->w_cursor
.lnum
;
2705 ~(VALID_VIRTCOL
|VALID_CHEIGHT
|VALID_WCOL
);
2709 curwin
->w_valid
&= ~(VALID_CROW
|VALID_WROW
);
2713 * Correct w_botline for changed w_topline.
2714 * Won't work when there are filler lines.
2717 if (curwin
->w_p_diff
)
2718 curwin
->w_valid
&= ~(VALID_BOTLINE
|VALID_BOTLINE_AP
);
2725 i
= plines(curwin
->w_botline
);
2729 (void)hasFolding(curwin
->w_botline
, NULL
,
2730 &curwin
->w_botline
);
2732 ++curwin
->w_botline
;
2734 } while (curwin
->w_botline
<= curbuf
->b_ml
.ml_line_count
);
2738 #ifndef KEEP_SCREEN_LINE
2740 * When hit bottom of the file: move cursor down.
2744 # ifdef FEAT_FOLDING
2745 if (hasAnyFolding(curwin
))
2748 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
2750 (void)hasFolding(curwin
->w_cursor
.lnum
, NULL
,
2751 &curwin
->w_cursor
.lnum
);
2752 ++curwin
->w_cursor
.lnum
;
2757 curwin
->w_cursor
.lnum
+= n
;
2758 check_cursor_lnum();
2761 /* try to put the cursor in the same screen line */
2762 while ((curwin
->w_cursor
.lnum
< curwin
->w_topline
|| scrolled
> 0)
2763 && curwin
->w_cursor
.lnum
< curwin
->w_botline
- 1)
2765 scrolled
-= plines(curwin
->w_cursor
.lnum
);
2766 if (scrolled
< 0 && curwin
->w_cursor
.lnum
>= curwin
->w_topline
)
2768 # ifdef FEAT_FOLDING
2769 (void)hasFolding(curwin
->w_cursor
.lnum
, NULL
,
2770 &curwin
->w_cursor
.lnum
);
2772 ++curwin
->w_cursor
.lnum
;
2779 * scroll the text down
2781 while (n
> 0 && curwin
->w_topline
> 1)
2784 if (curwin
->w_topfill
< diff_check_fill(curwin
, curwin
->w_topline
))
2787 if (--n
< 0 && scrolled
> 0)
2789 ++curwin
->w_topfill
;
2795 i
= plines_nofill(curwin
->w_topline
- 1);
2797 i
= plines(curwin
->w_topline
- 1);
2800 if (n
< 0 && scrolled
> 0)
2802 --curwin
->w_topline
;
2804 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
2807 curwin
->w_topfill
= 0;
2810 curwin
->w_valid
&= ~(VALID_CROW
|VALID_WROW
|
2811 VALID_BOTLINE
|VALID_BOTLINE_AP
);
2813 #ifndef KEEP_SCREEN_LINE
2814 if (curwin
->w_cursor
.lnum
> 1)
2816 --curwin
->w_cursor
.lnum
;
2817 curwin
->w_valid
&= ~(VALID_VIRTCOL
|VALID_CHEIGHT
|VALID_WCOL
);
2821 #ifndef KEEP_SCREEN_LINE
2823 * When hit top of the file: move cursor up.
2827 if (curwin
->w_cursor
.lnum
<= (linenr_T
)n
)
2828 curwin
->w_cursor
.lnum
= 1;
2830 # ifdef FEAT_FOLDING
2831 if (hasAnyFolding(curwin
))
2833 while (--n
>= 0 && curwin
->w_cursor
.lnum
> 1)
2835 --curwin
->w_cursor
.lnum
;
2836 (void)hasFolding(curwin
->w_cursor
.lnum
,
2837 &curwin
->w_cursor
.lnum
, NULL
);
2842 curwin
->w_cursor
.lnum
-= n
;
2845 /* try to put the cursor in the same screen line */
2846 scrolled
+= n
; /* move cursor when topline is 1 */
2847 while (curwin
->w_cursor
.lnum
> curwin
->w_topline
2848 && (scrolled
> 0 || curwin
->w_cursor
.lnum
>= curwin
->w_botline
))
2850 scrolled
-= plines(curwin
->w_cursor
.lnum
- 1);
2851 if (scrolled
< 0 && curwin
->w_cursor
.lnum
< curwin
->w_botline
)
2853 --curwin
->w_cursor
.lnum
;
2854 # ifdef FEAT_FOLDING
2860 # ifdef FEAT_FOLDING
2861 /* Move cursor to first line of closed fold. */
2865 check_topfill(curwin
, !flag
);
2868 beginline(BL_SOL
| BL_FIX
);
2869 redraw_later(VALID
);