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;
187 curwin
->w_topfill
= 0;
189 curwin
->w_botline
= 2;
190 curwin
->w_valid
|= VALID_BOTLINE
|VALID_BOTLINE_AP
;
191 #ifdef FEAT_SCROLLBIND
192 curwin
->w_scbind_pos
= 1;
197 * If the cursor is above or near the top of the window, scroll the window
198 * to show the line the cursor is in, with 'scrolloff' context.
202 if (curwin
->w_topline
> 1)
204 /* If the cursor is above topline, scrolling is always needed.
205 * If the cursor is far below topline and there is no folding,
206 * scrolling down is never needed. */
207 if (curwin
->w_cursor
.lnum
< curwin
->w_topline
)
208 check_topline
= TRUE
;
209 else if (check_top_offset())
210 check_topline
= TRUE
;
213 /* Check if there are more filler lines than allowed. */
214 if (!check_topline
&& curwin
->w_topfill
> diff_check_fill(curwin
,
216 check_topline
= TRUE
;
221 halfheight
= curwin
->w_height
/ 2 - 1;
226 if (hasAnyFolding(curwin
))
228 /* Count the number of logical lines between the cursor and
229 * topline + p_so (approximation of how much will be
232 for (lnum
= curwin
->w_cursor
.lnum
;
233 lnum
< curwin
->w_topline
+ p_so
; ++lnum
)
236 /* stop at end of file or when we know we are far off */
237 if (lnum
>= curbuf
->b_ml
.ml_line_count
|| n
>= halfheight
)
239 (void)hasFolding(lnum
, NULL
, &lnum
);
244 n
= curwin
->w_topline
+ p_so
- curwin
->w_cursor
.lnum
;
246 /* If we weren't very close to begin with, we scroll to put the
247 * cursor in the middle of the window. Otherwise put the cursor
248 * near the top of the window. */
250 scroll_cursor_halfway(FALSE
);
253 scroll_cursor_top(scrolljump_value(), FALSE
);
254 check_botline
= TRUE
;
261 /* Make sure topline is the first line of a fold. */
262 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
264 check_botline
= TRUE
;
269 * If the cursor is below the bottom of the window, scroll the window
270 * to put the cursor on the window.
271 * When w_botline is invalid, recompute it first, to avoid a redraw later.
272 * If w_botline was approximated, we might need a redraw later in a few
273 * cases, but we don't want to spend (a lot of) time recomputing w_botline
274 * for every small change.
278 if (!(curwin
->w_valid
& VALID_BOTLINE_AP
))
281 if (curwin
->w_botline
<= curbuf
->b_ml
.ml_line_count
)
283 if (curwin
->w_cursor
.lnum
< curwin
->w_botline
284 && ((long)curwin
->w_cursor
.lnum
285 >= (long)curwin
->w_botline
- p_so
287 || hasAnyFolding(curwin
)
293 /* Cursor is above botline, check if there are 'scrolloff'
294 * window lines below the cursor. If not, need to scroll. */
295 n
= curwin
->w_empty_rows
;
296 loff
.lnum
= curwin
->w_cursor
.lnum
;
298 /* In a fold go to its last line. */
299 (void)hasFolding(loff
.lnum
, NULL
, &loff
.lnum
);
303 n
+= curwin
->w_filler_rows
;
306 while (loff
.lnum
< curwin
->w_botline
308 && (loff
.lnum
+ 1 < curwin
->w_botline
|| loff
.fill
== 0)
318 /* sufficient context, no need to scroll */
319 check_botline
= FALSE
;
324 if (hasAnyFolding(curwin
))
326 /* Count the number of logical lines between the cursor and
327 * botline - p_so (approximation of how much will be
330 for (lnum
= curwin
->w_cursor
.lnum
;
331 lnum
>= curwin
->w_botline
- p_so
; --lnum
)
334 /* stop at end of file or when we know we are far off */
335 if (lnum
<= 0 || line_count
> curwin
->w_height
+ 1)
337 (void)hasFolding(lnum
, &lnum
, NULL
);
342 line_count
= curwin
->w_cursor
.lnum
- curwin
->w_botline
344 if (line_count
<= curwin
->w_height
+ 1)
345 scroll_cursor_bot(scrolljump_value(), FALSE
);
347 scroll_cursor_halfway(FALSE
);
351 curwin
->w_valid
|= VALID_TOPLINE
;
354 * Need to redraw when topline changed.
356 if (curwin
->w_topline
!= old_topline
358 || curwin
->w_topfill
!= old_topfill
363 if (curwin
->w_skipcol
!= 0)
365 curwin
->w_skipcol
= 0;
366 redraw_later(NOT_VALID
);
370 /* May need to set w_skipcol when cursor in w_topline. */
371 if (curwin
->w_cursor
.lnum
== curwin
->w_topline
)
381 * Return the scrolljump value to use for the current window.
382 * When 'scrolljump' is positive use it as-is.
383 * When 'scrolljump' is negative use it as a percentage of the window height.
390 return (curwin
->w_height
* -p_sj
) / 100;
394 * Return TRUE when there are not 'scrolloff' lines above the cursor for the
403 if (curwin
->w_cursor
.lnum
< curwin
->w_topline
+ p_so
405 || hasAnyFolding(curwin
)
409 loff
.lnum
= curwin
->w_cursor
.lnum
;
412 n
= curwin
->w_topfill
; /* always have this context */
416 /* Count the visible screen lines above the cursor line. */
420 /* Stop when included a line above the window. */
421 if (loff
.lnum
< curwin
->w_topline
423 || (loff
.lnum
== curwin
->w_topline
&& loff
.fill
> 0)
438 if (curwin
->w_set_curswant
)
441 curwin
->w_curswant
= curwin
->w_virtcol
;
442 curwin
->w_set_curswant
= FALSE
;
447 * Check if the cursor has moved. Set the w_valid flag accordingly.
450 check_cursor_moved(wp
)
453 if (wp
->w_cursor
.lnum
!= wp
->w_valid_cursor
.lnum
)
455 wp
->w_valid
&= ~(VALID_WROW
|VALID_WCOL
|VALID_VIRTCOL
456 |VALID_CHEIGHT
|VALID_CROW
|VALID_TOPLINE
);
457 wp
->w_valid_cursor
= wp
->w_cursor
;
458 wp
->w_valid_leftcol
= wp
->w_leftcol
;
460 else if (wp
->w_cursor
.col
!= wp
->w_valid_cursor
.col
461 || wp
->w_leftcol
!= wp
->w_valid_leftcol
462 #ifdef FEAT_VIRTUALEDIT
463 || wp
->w_cursor
.coladd
!= wp
->w_valid_cursor
.coladd
467 wp
->w_valid
&= ~(VALID_WROW
|VALID_WCOL
|VALID_VIRTCOL
);
468 wp
->w_valid_cursor
.col
= wp
->w_cursor
.col
;
469 wp
->w_valid_leftcol
= wp
->w_leftcol
;
470 #ifdef FEAT_VIRTUALEDIT
471 wp
->w_valid_cursor
.coladd
= wp
->w_cursor
.coladd
;
477 * Call this function when some window settings have changed, which require
478 * the cursor position, botline and topline to be recomputed and the window to
479 * be redrawn. E.g, when changing the 'wrap' option or folding.
482 changed_window_setting()
484 changed_window_setting_win(curwin
);
488 changed_window_setting_win(wp
)
491 wp
->w_lines_valid
= 0;
492 changed_line_abv_curs_win(wp
);
493 wp
->w_valid
&= ~(VALID_BOTLINE
|VALID_BOTLINE_AP
|VALID_TOPLINE
);
494 redraw_win_later(wp
, NOT_VALID
);
498 * Set wp->w_topline to a certain number.
501 set_topline(wp
, lnum
)
506 /* go to first of folded lines */
507 (void)hasFoldingWin(wp
, lnum
, &lnum
, NULL
, TRUE
, NULL
);
509 /* Approximate the value of w_botline */
510 wp
->w_botline
+= lnum
- wp
->w_topline
;
511 wp
->w_topline
= lnum
;
515 wp
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
|VALID_TOPLINE
);
516 /* Don't set VALID_TOPLINE here, 'scrolloff' needs to be checked. */
521 * Call this function when the length of the cursor line (in screen
522 * characters) has changed, and the change is before the cursor.
523 * Need to take care of w_botline separately!
526 changed_cline_bef_curs()
528 curwin
->w_valid
&= ~(VALID_WROW
|VALID_WCOL
|VALID_VIRTCOL
529 |VALID_CHEIGHT
|VALID_TOPLINE
);
533 changed_cline_bef_curs_win(wp
)
536 wp
->w_valid
&= ~(VALID_WROW
|VALID_WCOL
|VALID_VIRTCOL
537 |VALID_CHEIGHT
|VALID_TOPLINE
);
542 * Call this function when the length of the cursor line (in screen
543 * characters) has changed, and the position of the cursor doesn't change.
544 * Need to take care of w_botline separately!
547 changed_cline_aft_curs()
549 curwin
->w_valid
&= ~VALID_CHEIGHT
;
554 * Call this function when the length of a line (in screen characters) above
555 * the cursor have changed.
556 * Need to take care of w_botline separately!
559 changed_line_abv_curs()
561 curwin
->w_valid
&= ~(VALID_WROW
|VALID_WCOL
|VALID_VIRTCOL
|VALID_CROW
562 |VALID_CHEIGHT
|VALID_TOPLINE
);
566 changed_line_abv_curs_win(wp
)
569 wp
->w_valid
&= ~(VALID_WROW
|VALID_WCOL
|VALID_VIRTCOL
|VALID_CROW
570 |VALID_CHEIGHT
|VALID_TOPLINE
);
574 * Make sure the value of curwin->w_botline is valid.
579 if (!(curwin
->w_valid
& VALID_BOTLINE
))
580 comp_botline(curwin
);
584 * Make sure the value of wp->w_botline is valid.
587 validate_botline_win(wp
)
590 if (!(wp
->w_valid
& VALID_BOTLINE
))
595 * Mark curwin->w_botline as invalid (because of some change in the buffer).
600 curwin
->w_valid
&= ~(VALID_BOTLINE
|VALID_BOTLINE_AP
);
604 invalidate_botline_win(wp
)
607 wp
->w_valid
&= ~(VALID_BOTLINE
|VALID_BOTLINE_AP
);
610 #if 0 /* never used */
612 * Mark curwin->w_botline as approximated (because of some small change in the
616 approximate_botline()
618 curwin
->w_valid
&= ~VALID_BOTLINE
;
623 approximate_botline_win(wp
)
626 wp
->w_valid
&= ~VALID_BOTLINE
;
631 * Return TRUE if curwin->w_botline is valid.
636 return (curwin
->w_valid
& VALID_BOTLINE
);
642 * Return TRUE if curwin->w_botline is valid or approximated.
645 botline_approximated()
647 return (curwin
->w_valid
& VALID_BOTLINE_AP
);
652 * Return TRUE if curwin->w_wrow and curwin->w_wcol are valid.
657 check_cursor_moved(curwin
);
658 return ((curwin
->w_valid
& (VALID_WROW
|VALID_WCOL
)) ==
659 (VALID_WROW
|VALID_WCOL
));
663 * Validate cursor position. Makes sure w_wrow and w_wcol are valid.
664 * w_topline must be valid, you may need to call update_topline() first!
669 check_cursor_moved(curwin
);
670 if ((curwin
->w_valid
& (VALID_WCOL
|VALID_WROW
)) != (VALID_WCOL
|VALID_WROW
))
674 #if defined(FEAT_GUI) || defined(PROTO)
676 * validate w_cline_row.
682 * First make sure that w_topline is valid (after moving the cursor).
685 check_cursor_moved(curwin
);
686 if (!(curwin
->w_valid
& VALID_CROW
))
687 curs_rows(curwin
, FALSE
);
692 * Compute wp->w_cline_row and wp->w_cline_height, based on the current value
695 * Returns OK when cursor is in the window, FAIL when it isn't.
698 curs_rows(wp
, do_botline
)
700 int do_botline
; /* also compute w_botline */
710 /* Check if wp->w_lines[].wl_size is invalid */
711 all_invalid
= (!redrawing()
712 || wp
->w_lines_valid
== 0
713 || wp
->w_lines
[0].wl_lnum
> wp
->w_topline
);
716 for (lnum
= wp
->w_topline
; lnum
< wp
->w_cursor
.lnum
; ++i
)
719 if (!all_invalid
&& i
< wp
->w_lines_valid
)
721 if (wp
->w_lines
[i
].wl_lnum
< lnum
|| !wp
->w_lines
[i
].wl_valid
)
722 continue; /* skip changed or deleted lines */
723 if (wp
->w_lines
[i
].wl_lnum
== lnum
)
726 /* Check for newly inserted lines below this row, in which
727 * case we need to check for folded lines. */
728 if (!wp
->w_buffer
->b_mod_set
729 || wp
->w_lines
[i
].wl_lastlnum
< wp
->w_cursor
.lnum
730 || wp
->w_buffer
->b_mod_top
731 > wp
->w_lines
[i
].wl_lastlnum
+ 1)
735 else if (wp
->w_lines
[i
].wl_lnum
> lnum
)
736 --i
; /* hold at inserted lines */
740 && (lnum
!= wp
->w_topline
|| !wp
->w_p_diff
)
745 lnum
= wp
->w_lines
[i
].wl_lastlnum
+ 1;
746 /* Cursor inside folded lines, don't count this row */
747 if (lnum
> wp
->w_cursor
.lnum
)
752 wp
->w_cline_row
+= wp
->w_lines
[i
].wl_size
;
757 fold_count
= foldedCount(wp
, lnum
, NULL
);
761 if (lnum
> wp
->w_cursor
.lnum
)
768 if (lnum
== wp
->w_topline
)
769 wp
->w_cline_row
+= plines_win_nofill(wp
, lnum
++, TRUE
)
773 wp
->w_cline_row
+= plines_win(wp
, lnum
++, TRUE
);
777 check_cursor_moved(wp
);
778 if (!(wp
->w_valid
& VALID_CHEIGHT
))
781 || i
== wp
->w_lines_valid
782 || (i
< wp
->w_lines_valid
783 && (!wp
->w_lines
[i
].wl_valid
784 || wp
->w_lines
[i
].wl_lnum
!= wp
->w_cursor
.lnum
)))
787 if (wp
->w_cursor
.lnum
== wp
->w_topline
)
788 wp
->w_cline_height
= plines_win_nofill(wp
, wp
->w_cursor
.lnum
,
789 TRUE
) + wp
->w_topfill
;
792 wp
->w_cline_height
= plines_win(wp
, wp
->w_cursor
.lnum
, TRUE
);
794 wp
->w_cline_folded
= hasFoldingWin(wp
, wp
->w_cursor
.lnum
,
795 NULL
, NULL
, TRUE
, NULL
);
798 else if (i
> wp
->w_lines_valid
)
800 /* a line that is too long to fit on the last screen line */
801 wp
->w_cline_height
= 0;
803 wp
->w_cline_folded
= hasFoldingWin(wp
, wp
->w_cursor
.lnum
,
804 NULL
, NULL
, TRUE
, NULL
);
809 wp
->w_cline_height
= wp
->w_lines
[i
].wl_size
;
811 wp
->w_cline_folded
= wp
->w_lines
[i
].wl_folded
;
816 wp
->w_valid
|= VALID_CROW
|VALID_CHEIGHT
;
818 /* validate botline too, if update_screen doesn't do it */
819 if (do_botline
&& all_invalid
)
820 validate_botline_win(wp
);
824 * Validate curwin->w_virtcol only.
829 validate_virtcol_win(curwin
);
833 * Validate wp->w_virtcol only.
836 validate_virtcol_win(wp
)
839 check_cursor_moved(wp
);
840 if (!(wp
->w_valid
& VALID_VIRTCOL
))
842 getvvcol(wp
, &wp
->w_cursor
, NULL
, &(wp
->w_virtcol
), NULL
);
843 wp
->w_valid
|= VALID_VIRTCOL
;
846 # ifdef FEAT_INS_EXPAND
850 redraw_win_later(wp
, SOME_VALID
);
856 * Validate curwin->w_cline_height only.
861 check_cursor_moved(curwin
);
862 if (!(curwin
->w_valid
& VALID_CHEIGHT
))
865 if (curwin
->w_cursor
.lnum
== curwin
->w_topline
)
866 curwin
->w_cline_height
= plines_nofill(curwin
->w_cursor
.lnum
)
870 curwin
->w_cline_height
= plines(curwin
->w_cursor
.lnum
);
872 curwin
->w_cline_folded
= hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
);
874 curwin
->w_valid
|= VALID_CHEIGHT
;
879 * validate w_wcol and w_virtcol only. Only correct when 'wrap' on!
882 validate_cursor_col()
888 if (!(curwin
->w_valid
& VALID_WCOL
))
890 col
= curwin
->w_virtcol
;
891 off
= curwin_col_off();
894 /* long line wrapping, adjust curwin->w_wrow */
895 if (curwin
->w_p_wrap
&& col
>= (colnr_T
)W_WIDTH(curwin
)
896 && W_WIDTH(curwin
) - off
+ curwin_col_off2() > 0)
898 col
-= W_WIDTH(curwin
);
899 col
= col
% (W_WIDTH(curwin
) - off
+ curwin_col_off2());
901 curwin
->w_wcol
= col
;
902 curwin
->w_valid
|= VALID_WCOL
;
907 * Compute offset of a window, occupied by line number, fold column and sign
908 * column (these don't move when scrolling horizontally).
914 return ((wp
->w_p_nu
? number_width(wp
) + 1 : 0)
916 + (cmdwin_type
== 0 || wp
!= curwin
? 0 : 1)
923 # ifdef FEAT_NETBEANS_INTG
924 /* always show glyph gutter in netbeans */
927 wp
->w_buffer
->b_signlist
!= NULL
? 2 : 0)
935 return win_col_off(curwin
);
939 * Return the difference in column offset for the second screen line of a
940 * wrapped line. It's 8 if 'number' is on and 'n' is in 'cpoptions'.
946 if (wp
->w_p_nu
&& vim_strchr(p_cpo
, CPO_NUMCOL
) != NULL
)
947 return number_width(wp
) + 1;
954 return win_col_off2(curwin
);
958 * compute curwin->w_wcol and curwin->w_virtcol.
959 * Also updates curwin->w_wrow and curwin->w_cline_row.
960 * Also updates curwin->w_leftcol.
964 int scroll
; /* when TRUE, may scroll horizontally */
967 int extra
; /* offset for first screen line */
968 int off_left
, off_right
;
976 colnr_T prev_skipcol
;
979 * First make sure that w_topline is valid (after moving the cursor).
984 * Next make sure that w_cline_row is valid.
986 if (!(curwin
->w_valid
& VALID_CROW
))
987 curs_rows(curwin
, FALSE
);
990 * Compute the number of virtual columns.
993 if (curwin
->w_cline_folded
)
994 /* In a folded line the cursor is always in the first column */
995 startcol
= curwin
->w_virtcol
= endcol
= curwin
->w_leftcol
;
998 getvvcol(curwin
, &curwin
->w_cursor
,
999 &startcol
, &(curwin
->w_virtcol
), &endcol
);
1001 /* remove '$' from change command when cursor moves onto it */
1002 if (startcol
> dollar_vcol
)
1005 extra
= curwin_col_off();
1006 curwin
->w_wcol
= curwin
->w_virtcol
+ extra
;
1010 * Now compute w_wrow, counting screen lines from w_cline_row.
1012 curwin
->w_wrow
= curwin
->w_cline_row
;
1014 textwidth
= W_WIDTH(curwin
) - extra
;
1017 /* No room for text, put cursor in last char of window. */
1018 curwin
->w_wcol
= W_WIDTH(curwin
) - 1;
1019 curwin
->w_wrow
= curwin
->w_height
- 1;
1021 else if (curwin
->w_p_wrap
1022 #ifdef FEAT_VERTSPLIT
1023 && curwin
->w_width
!= 0
1027 width
= textwidth
+ curwin_col_off2();
1029 /* long line wrapping, adjust curwin->w_wrow */
1030 if (curwin
->w_wcol
>= W_WIDTH(curwin
))
1032 n
= (curwin
->w_wcol
- W_WIDTH(curwin
)) / width
+ 1;
1033 curwin
->w_wcol
-= n
* width
;
1034 curwin
->w_wrow
+= n
;
1036 #ifdef FEAT_LINEBREAK
1037 /* When cursor wraps to first char of next line in Insert
1038 * mode, the 'showbreak' string isn't shown, backup to first
1040 if (*p_sbr
&& *ml_get_cursor() == NUL
1041 && curwin
->w_wcol
== (int)vim_strsize(p_sbr
))
1047 /* No line wrapping: compute curwin->w_leftcol if scrolling is on and line
1049 * If scrolling is off, curwin->w_leftcol is assumed to be 0 */
1052 && !curwin
->w_cline_folded
1057 * If Cursor is left of the screen, scroll rightwards.
1058 * If Cursor is right of the screen, scroll leftwards
1059 * If we get closer to the edge than 'sidescrolloff', scroll a little
1062 off_left
= (int)startcol
- (int)curwin
->w_leftcol
- p_siso
;
1063 off_right
= (int)endcol
- (int)(curwin
->w_leftcol
+ W_WIDTH(curwin
)
1065 if (off_left
< 0 || off_right
> 0)
1072 /* When far off or not enough room on either side, put cursor in
1073 * middle of window. */
1074 if (p_ss
== 0 || diff
>= textwidth
/ 2 || off_right
>= off_left
)
1075 new_leftcol
= curwin
->w_wcol
- extra
- textwidth
/ 2;
1081 new_leftcol
= curwin
->w_leftcol
- diff
;
1083 new_leftcol
= curwin
->w_leftcol
+ diff
;
1085 if (new_leftcol
< 0)
1087 if (new_leftcol
!= (int)curwin
->w_leftcol
)
1089 curwin
->w_leftcol
= new_leftcol
;
1090 /* screen has to be redrawn with new curwin->w_leftcol */
1091 redraw_later(NOT_VALID
);
1094 curwin
->w_wcol
-= curwin
->w_leftcol
;
1096 else if (curwin
->w_wcol
> (int)curwin
->w_leftcol
)
1097 curwin
->w_wcol
-= curwin
->w_leftcol
;
1102 /* Skip over filler lines. At the top use w_topfill, there
1103 * may be some filler lines above the window. */
1104 if (curwin
->w_cursor
.lnum
== curwin
->w_topline
)
1105 curwin
->w_wrow
+= curwin
->w_topfill
;
1107 curwin
->w_wrow
+= diff_check_fill(curwin
, curwin
->w_cursor
.lnum
);
1110 prev_skipcol
= curwin
->w_skipcol
;
1113 if ((curwin
->w_wrow
>= curwin
->w_height
1114 || ((prev_skipcol
> 0
1115 || curwin
->w_wrow
+ p_so
>= curwin
->w_height
)
1122 (curwin
, curwin
->w_cursor
.lnum
, FALSE
))
1123 - 1 >= curwin
->w_height
))
1124 && curwin
->w_height
!= 0
1125 && curwin
->w_cursor
.lnum
== curwin
->w_topline
1127 #ifdef FEAT_VERTSPLIT
1128 && curwin
->w_width
!= 0
1132 /* Cursor past end of screen. Happens with a single line that does
1133 * not fit on screen. Find a skipcol to show the text around the
1134 * cursor. Avoid scrolling all the time. compute value of "extra":
1135 * 1: Less than "p_so" lines above
1136 * 2: Less than "p_so" lines below
1137 * 3: both of them */
1139 if (curwin
->w_skipcol
+ p_so
* width
> curwin
->w_virtcol
)
1141 /* Compute last display line of the buffer line that we want at the
1142 * bottom of the window. */
1144 p_lines
= plines_win(curwin
, curwin
->w_cursor
.lnum
, FALSE
);
1146 if (p_lines
> curwin
->w_wrow
+ p_so
)
1147 n
= curwin
->w_wrow
+ p_so
;
1150 if ((colnr_T
)n
>= curwin
->w_height
+ curwin
->w_skipcol
/ width
)
1153 if (extra
== 3 || p_lines
< p_so
* 2)
1155 /* not enough room for 'scrolloff', put cursor in the middle */
1156 n
= curwin
->w_virtcol
/ width
;
1157 if (n
> curwin
->w_height
/ 2)
1158 n
-= curwin
->w_height
/ 2;
1161 /* don't skip more than necessary */
1162 if (n
> p_lines
- curwin
->w_height
+ 1)
1163 n
= p_lines
- curwin
->w_height
+ 1;
1164 curwin
->w_skipcol
= n
* width
;
1166 else if (extra
== 1)
1168 /* less then 'scrolloff' lines above, decrease skipcol */
1169 extra
= (curwin
->w_skipcol
+ p_so
* width
- curwin
->w_virtcol
1170 + width
- 1) / width
;
1173 if ((colnr_T
)(extra
* width
) > curwin
->w_skipcol
)
1174 extra
= curwin
->w_skipcol
/ width
;
1175 curwin
->w_skipcol
-= extra
* width
;
1178 else if (extra
== 2)
1180 /* less then 'scrolloff' lines below, increase skipcol */
1181 endcol
= (n
- curwin
->w_height
+ 1) * width
;
1182 while (endcol
> curwin
->w_virtcol
)
1184 if (endcol
> curwin
->w_skipcol
)
1185 curwin
->w_skipcol
= endcol
;
1188 curwin
->w_wrow
-= curwin
->w_skipcol
/ width
;
1189 if (curwin
->w_wrow
>= curwin
->w_height
)
1191 /* small window, make sure cursor is in it */
1192 extra
= curwin
->w_wrow
- curwin
->w_height
+ 1;
1193 curwin
->w_skipcol
+= extra
* width
;
1194 curwin
->w_wrow
-= extra
;
1197 extra
= ((int)prev_skipcol
- (int)curwin
->w_skipcol
) / width
;
1199 win_ins_lines(curwin
, 0, extra
, FALSE
, FALSE
);
1201 win_del_lines(curwin
, 0, -extra
, FALSE
, FALSE
);
1204 curwin
->w_skipcol
= 0;
1205 if (prev_skipcol
!= curwin
->w_skipcol
)
1206 redraw_later(NOT_VALID
);
1209 /* Redraw when w_virtcol changes and 'cursorcolumn' is set, or when w_row
1210 * changes and 'cursorline' is set. */
1211 if (((curwin
->w_p_cuc
&& (curwin
->w_valid
& VALID_VIRTCOL
) == 0)
1212 || (curwin
->w_p_cul
&& (curwin
->w_valid
& VALID_WROW
) == 0))
1213 # ifdef FEAT_INS_EXPAND
1217 redraw_later(SOME_VALID
);
1220 curwin
->w_valid
|= VALID_WCOL
|VALID_WROW
|VALID_VIRTCOL
;
1224 * Scroll the current window down by "line_count" logical lines. "CTRL-Y"
1228 scrolldown(line_count
, byfold
)
1230 int byfold
; /* TRUE: count a closed fold as one line */
1232 long done
= 0; /* total # of physical lines done */
1239 /* Make sure w_topline is at the first of a sequence of folded lines. */
1240 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
1242 validate_cursor(); /* w_wrow needs to be valid */
1243 while (line_count
-- > 0)
1246 if (curwin
->w_topfill
< diff_check(curwin
, curwin
->w_topline
))
1248 ++curwin
->w_topfill
;
1254 if (curwin
->w_topline
== 1)
1256 --curwin
->w_topline
;
1258 curwin
->w_topfill
= 0;
1261 /* A sequence of folded lines only counts for one logical line */
1262 if (hasFolding(curwin
->w_topline
, &first
, NULL
))
1266 line_count
-= curwin
->w_topline
- first
- 1;
1267 curwin
->w_botline
-= curwin
->w_topline
- first
;
1268 curwin
->w_topline
= first
;
1273 done
+= plines_nofill(curwin
->w_topline
);
1275 done
+= plines(curwin
->w_topline
);
1278 --curwin
->w_botline
; /* approximate w_botline */
1279 invalidate_botline();
1281 curwin
->w_wrow
+= done
; /* keep w_wrow updated */
1282 curwin
->w_cline_row
+= done
; /* keep w_cline_row updated */
1285 if (curwin
->w_cursor
.lnum
== curwin
->w_topline
)
1286 curwin
->w_cline_row
= 0;
1287 check_topfill(curwin
, TRUE
);
1291 * Compute the row number of the last row of the cursor line
1292 * and move the cursor onto the displayed part of the window.
1294 wrow
= curwin
->w_wrow
;
1295 if (curwin
->w_p_wrap
1296 #ifdef FEAT_VERTSPLIT
1297 && curwin
->w_width
!= 0
1303 wrow
+= curwin
->w_cline_height
- 1 -
1304 curwin
->w_virtcol
/ W_WIDTH(curwin
);
1306 while (wrow
>= curwin
->w_height
&& curwin
->w_cursor
.lnum
> 1)
1309 if (hasFolding(curwin
->w_cursor
.lnum
, &first
, NULL
))
1313 curwin
->w_cursor
.lnum
= 1;
1315 curwin
->w_cursor
.lnum
= first
- 1;
1319 wrow
-= plines(curwin
->w_cursor
.lnum
--);
1321 ~(VALID_WROW
|VALID_WCOL
|VALID_CHEIGHT
|VALID_CROW
|VALID_VIRTCOL
);
1327 /* Move cursor to first line of closed fold. */
1330 coladvance(curwin
->w_curswant
);
1335 * Scroll the current window up by "line_count" logical lines. "CTRL-E"
1339 scrollup(line_count
, byfold
)
1341 int byfold
; /* TRUE: count a closed fold as one line */
1343 #if defined(FEAT_FOLDING) || defined(FEAT_DIFF)
1347 # ifdef FEAT_FOLDING
1348 (byfold
&& hasAnyFolding(curwin
))
1358 /* count each sequence of folded lines as one logical line */
1359 lnum
= curwin
->w_topline
;
1360 while (line_count
--)
1363 if (curwin
->w_topfill
> 0)
1364 --curwin
->w_topfill
;
1368 # ifdef FEAT_FOLDING
1370 (void)hasFolding(lnum
, NULL
, &lnum
);
1372 if (lnum
>= curbuf
->b_ml
.ml_line_count
)
1376 curwin
->w_topfill
= diff_check_fill(curwin
, lnum
);
1380 /* approximate w_botline */
1381 curwin
->w_botline
+= lnum
- curwin
->w_topline
;
1382 curwin
->w_topline
= lnum
;
1387 curwin
->w_topline
+= line_count
;
1388 curwin
->w_botline
+= line_count
; /* approximate w_botline */
1391 if (curwin
->w_topline
> curbuf
->b_ml
.ml_line_count
)
1392 curwin
->w_topline
= curbuf
->b_ml
.ml_line_count
;
1393 if (curwin
->w_botline
> curbuf
->b_ml
.ml_line_count
+ 1)
1394 curwin
->w_botline
= curbuf
->b_ml
.ml_line_count
+ 1;
1397 check_topfill(curwin
, FALSE
);
1401 if (hasAnyFolding(curwin
))
1402 /* Make sure w_topline is at the first of a sequence of folded lines. */
1403 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
1406 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
1407 if (curwin
->w_cursor
.lnum
< curwin
->w_topline
)
1409 curwin
->w_cursor
.lnum
= curwin
->w_topline
;
1411 ~(VALID_WROW
|VALID_WCOL
|VALID_CHEIGHT
|VALID_CROW
|VALID_VIRTCOL
);
1412 coladvance(curwin
->w_curswant
);
1418 * Don't end up with too many filler lines in the window.
1421 check_topfill(wp
, down
)
1423 int down
; /* when TRUE scroll down when not enough space */
1427 if (wp
->w_topfill
> 0)
1429 n
= plines_win_nofill(wp
, wp
->w_topline
, TRUE
);
1430 if (wp
->w_topfill
+ n
> wp
->w_height
)
1432 if (down
&& wp
->w_topline
> 1)
1439 wp
->w_topfill
= wp
->w_height
- n
;
1440 if (wp
->w_topfill
< 0)
1448 * Use as many filler lines as possible for w_topline. Make sure w_topline
1456 n
= plines_nofill(curwin
->w_topline
);
1457 if (n
>= curwin
->w_height
)
1458 curwin
->w_topfill
= 0;
1461 curwin
->w_topfill
= diff_check_fill(curwin
, curwin
->w_topline
);
1462 if (curwin
->w_topfill
+ n
> curwin
->w_height
)
1463 curwin
->w_topfill
= curwin
->w_height
- n
;
1468 #if defined(FEAT_INS_EXPAND) || defined(PROTO)
1470 * Scroll the screen one line down, but don't do it if it would move the
1471 * cursor off the screen.
1478 int can_fill
= (curwin
->w_topfill
1479 < diff_check_fill(curwin
, curwin
->w_topline
));
1482 if (curwin
->w_topline
<= 1
1489 validate_cursor(); /* w_wrow needs to be valid */
1492 * Compute the row number of the last row of the cursor line
1493 * and make sure it doesn't go off the screen. Make sure the cursor
1494 * doesn't go past 'scrolloff' lines from the screen end.
1496 end_row
= curwin
->w_wrow
;
1501 end_row
+= plines_nofill(curwin
->w_topline
- 1);
1503 end_row
+= plines(curwin
->w_topline
- 1);
1505 if (curwin
->w_p_wrap
1506 #ifdef FEAT_VERTSPLIT
1507 && curwin
->w_width
!= 0
1513 end_row
+= curwin
->w_cline_height
- 1 -
1514 curwin
->w_virtcol
/ W_WIDTH(curwin
);
1516 if (end_row
< curwin
->w_height
- p_so
)
1521 ++curwin
->w_topfill
;
1522 check_topfill(curwin
, TRUE
);
1526 --curwin
->w_topline
;
1527 curwin
->w_topfill
= 0;
1530 --curwin
->w_topline
;
1533 hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
1535 --curwin
->w_botline
; /* approximate w_botline */
1536 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
1541 * Scroll the screen one line up, but don't do it if it would move the cursor
1549 if (curwin
->w_topline
== curbuf
->b_ml
.ml_line_count
1551 && curwin
->w_topfill
== 0
1556 validate_cursor(); /* w_wrow needs to be valid */
1559 * Compute the row number of the first row of the cursor line
1560 * and make sure it doesn't go off the screen. Make sure the cursor
1561 * doesn't go before 'scrolloff' lines from the screen start.
1564 start_row
= curwin
->w_wrow
- plines_nofill(curwin
->w_topline
)
1565 - curwin
->w_topfill
;
1567 start_row
= curwin
->w_wrow
- plines(curwin
->w_topline
);
1569 if (curwin
->w_p_wrap
1570 #ifdef FEAT_VERTSPLIT
1571 && curwin
->w_width
!= 0
1576 start_row
-= curwin
->w_virtcol
/ W_WIDTH(curwin
);
1578 if (start_row
>= p_so
)
1581 if (curwin
->w_topfill
> 0)
1582 --curwin
->w_topfill
;
1587 (void)hasFolding(curwin
->w_topline
, NULL
, &curwin
->w_topline
);
1589 ++curwin
->w_topline
;
1591 ++curwin
->w_botline
; /* approximate w_botline */
1592 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
1595 #endif /* FEAT_INS_EXPAND */
1598 * Add one line above "lp->lnum". This can be a filler line, a closed fold or
1599 * a (wrapped) text line. Uses and sets "lp->fill".
1600 * Returns the height of the added line in "lp->height".
1601 * Lines above the first one are incredibly high.
1608 if (lp
->fill
< diff_check_fill(curwin
, lp
->lnum
))
1610 /* Add a filler line. */
1622 lp
->height
= MAXCOL
;
1625 if (hasFolding(lp
->lnum
, &lp
->lnum
, NULL
))
1626 /* Add a closed fold */
1632 lp
->height
= plines_nofill(lp
->lnum
);
1634 lp
->height
= plines(lp
->lnum
);
1641 * Add one line below "lp->lnum". This can be a filler line, a closed fold or
1642 * a (wrapped) text line. Uses and sets "lp->fill".
1643 * Returns the height of the added line in "lp->height".
1644 * Lines below the last one are incredibly high.
1651 if (lp
->fill
< diff_check_fill(curwin
, lp
->lnum
+ 1))
1653 /* Add a filler line. */
1664 if (lp
->lnum
> curbuf
->b_ml
.ml_line_count
)
1665 lp
->height
= MAXCOL
;
1668 if (hasFolding(lp
->lnum
, NULL
, &lp
->lnum
))
1669 /* Add a closed fold */
1675 lp
->height
= plines_nofill(lp
->lnum
);
1677 lp
->height
= plines(lp
->lnum
);
1685 * Switch from including filler lines below lp->lnum to including filler
1686 * lines above loff.lnum + 1. This keeps pointing to the same line.
1687 * When there are no filler lines nothing changes.
1696 lp
->fill
= diff_check_fill(curwin
, lp
->lnum
) - lp
->fill
+ 1;
1701 * Switch from including filler lines above lp->lnum to including filler
1702 * lines below loff.lnum - 1. This keeps pointing to the same line.
1703 * When there are no filler lines nothing changes.
1711 lp
->fill
= diff_check_fill(curwin
, lp
->lnum
) - lp
->fill
+ 1;
1718 * Recompute topline to put the cursor at the top of the window.
1719 * Scroll at least "min_scroll" lines.
1720 * If "always" is TRUE, always set topline (for "zt").
1723 scroll_cursor_top(min_scroll
, always
)
1731 linenr_T top
; /* just above displayed lines */
1732 linenr_T bot
; /* just below displayed lines */
1733 linenr_T old_topline
= curwin
->w_topline
;
1735 linenr_T old_topfill
= curwin
->w_topfill
;
1737 linenr_T new_topline
;
1741 if (mouse_dragging
> 0)
1742 off
= mouse_dragging
- 1;
1746 * Decrease topline until:
1748 * - (part of) the cursor line is moved off the screen or
1749 * - moved at least 'scrolljump' lines and
1750 * - at least 'scrolloff' lines above and below the cursor
1753 used
= curwin
->w_cline_height
;
1754 if (curwin
->w_cursor
.lnum
< curwin
->w_topline
)
1758 if (hasFolding(curwin
->w_cursor
.lnum
, &top
, &bot
))
1766 top
= curwin
->w_cursor
.lnum
- 1;
1767 bot
= curwin
->w_cursor
.lnum
+ 1;
1769 new_topline
= top
+ 1;
1772 /* count filler lines of the cursor window as context */
1773 i
= diff_check_fill(curwin
, curwin
->w_cursor
.lnum
);
1779 * Check if the lines from "top" to "bot" fit in the window. If they do,
1780 * set new_topline and advance "top" and "bot" to include more lines.
1785 if (hasFolding(top
, &top
, NULL
))
1786 /* count one logical line for a sequence of folded lines */
1792 if (extra
+ i
<= off
&& bot
< curbuf
->b_ml
.ml_line_count
)
1795 if (hasFolding(bot
, NULL
, &bot
))
1796 /* count one logical line for a sequence of folded lines */
1800 used
+= plines(bot
);
1802 if (used
> curwin
->w_height
)
1804 if (top
< curwin
->w_topline
)
1808 * If scrolling is needed, scroll at least 'sj' lines.
1810 if ((new_topline
>= curwin
->w_topline
|| scrolled
> min_scroll
)
1821 * If we don't have enough space, put cursor in the middle.
1822 * This makes sure we get the same position when using "k" and "j"
1823 * in a small window.
1825 if (used
> curwin
->w_height
)
1826 scroll_cursor_halfway(FALSE
);
1830 * If "always" is FALSE, only adjust topline to a lower value, higher
1831 * value may happen with wrapping lines
1833 if (new_topline
< curwin
->w_topline
|| always
)
1834 curwin
->w_topline
= new_topline
;
1835 if (curwin
->w_topline
> curwin
->w_cursor
.lnum
)
1836 curwin
->w_topline
= curwin
->w_cursor
.lnum
;
1838 curwin
->w_topfill
= diff_check_fill(curwin
, curwin
->w_topline
);
1839 if (curwin
->w_topfill
> 0 && extra
> off
)
1841 curwin
->w_topfill
-= extra
- off
;
1842 if (curwin
->w_topfill
< 0)
1843 curwin
->w_topfill
= 0;
1845 check_topfill(curwin
, FALSE
);
1847 if (curwin
->w_topline
!= old_topline
1849 || curwin
->w_topfill
!= old_topfill
1853 ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
|VALID_BOTLINE_AP
);
1854 curwin
->w_valid
|= VALID_TOPLINE
;
1859 * Set w_empty_rows and w_filler_rows for window "wp", having used up "used"
1860 * screen lines for text lines.
1863 set_empty_rows(wp
, used
)
1868 wp
->w_filler_rows
= 0;
1871 wp
->w_empty_rows
= 0; /* single line that doesn't fit */
1874 wp
->w_empty_rows
= wp
->w_height
- used
;
1876 if (wp
->w_botline
<= wp
->w_buffer
->b_ml
.ml_line_count
)
1878 wp
->w_filler_rows
= diff_check_fill(wp
, wp
->w_botline
);
1879 if (wp
->w_empty_rows
> wp
->w_filler_rows
)
1880 wp
->w_empty_rows
-= wp
->w_filler_rows
;
1883 wp
->w_filler_rows
= wp
->w_empty_rows
;
1884 wp
->w_empty_rows
= 0;
1892 * Recompute topline to put the cursor at the bottom of the window.
1893 * Scroll at least "min_scroll" lines.
1894 * If "set_topbot" is TRUE, set topline and botline first (for "zb").
1895 * This is messy stuff!!!
1898 scroll_cursor_bot(min_scroll
, set_topbot
)
1906 linenr_T line_count
;
1907 linenr_T old_topline
= curwin
->w_topline
;
1911 int old_topfill
= curwin
->w_topfill
;
1912 int fill_below_window
;
1914 linenr_T old_botline
= curwin
->w_botline
;
1915 linenr_T old_valid
= curwin
->w_valid
;
1916 int old_empty_rows
= curwin
->w_empty_rows
;
1917 linenr_T cln
; /* Cursor Line Number */
1919 cln
= curwin
->w_cursor
.lnum
;
1923 curwin
->w_botline
= cln
+ 1;
1927 for (curwin
->w_topline
= curwin
->w_botline
;
1928 curwin
->w_topline
> 1;
1929 curwin
->w_topline
= loff
.lnum
)
1931 loff
.lnum
= curwin
->w_topline
;
1932 topline_back(&loff
);
1933 if (used
+ loff
.height
> curwin
->w_height
)
1935 used
+= loff
.height
;
1937 curwin
->w_topfill
= loff
.fill
;
1940 set_empty_rows(curwin
, used
);
1941 curwin
->w_valid
|= VALID_BOTLINE
|VALID_BOTLINE_AP
;
1942 if (curwin
->w_topline
!= old_topline
1944 || curwin
->w_topfill
!= old_topfill
1947 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
);
1952 /* The lines of the cursor line itself are always used. */
1954 used
= plines_nofill(cln
);
1957 used
= curwin
->w_cline_height
;
1960 /* If the cursor is below botline, we will at least scroll by the height
1961 * of the cursor line. Correct for empty lines, which are really part of
1963 if (cln
>= curwin
->w_botline
)
1966 if (cln
== curwin
->w_botline
)
1967 scrolled
-= curwin
->w_empty_rows
;
1971 * Stop counting lines to scroll when
1972 * - hitting start of the file
1973 * - scrolled nothing or at least 'sj' lines
1974 * - at least 'so' lines below the cursor
1975 * - lines between botline and cursor have been counted
1978 if (!hasFolding(curwin
->w_cursor
.lnum
, &loff
.lnum
, &boff
.lnum
))
1987 fill_below_window
= diff_check_fill(curwin
, curwin
->w_botline
)
1988 - curwin
->w_filler_rows
;
1991 while (loff
.lnum
> 1)
1993 /* Stop when scrolled nothing or at least "min_scroll", found "extra"
1994 * context for 'scrolloff' and counted all lines below the window. */
1995 if ((((scrolled
<= 0 || scrolled
>= min_scroll
)
1998 mouse_dragging
> 0 ? mouse_dragging
- 1 :
2001 || boff
.lnum
+ 1 > curbuf
->b_ml
.ml_line_count
)
2002 && loff
.lnum
<= curwin
->w_botline
2004 && (loff
.lnum
< curwin
->w_botline
2005 || loff
.fill
>= fill_below_window
)
2010 /* Add one line above */
2011 topline_back(&loff
);
2012 used
+= loff
.height
;
2013 if (used
> curwin
->w_height
)
2015 if (loff
.lnum
>= curwin
->w_botline
2017 && (loff
.lnum
> curwin
->w_botline
2018 || loff
.fill
<= fill_below_window
)
2022 /* Count screen lines that are below the window. */
2023 scrolled
+= loff
.height
;
2024 if (loff
.lnum
== curwin
->w_botline
2029 scrolled
-= curwin
->w_empty_rows
;
2032 if (boff
.lnum
< curbuf
->b_ml
.ml_line_count
)
2034 /* Add one line below */
2035 botline_forw(&boff
);
2036 used
+= boff
.height
;
2037 if (used
> curwin
->w_height
)
2041 mouse_dragging
> 0 ? mouse_dragging
- 1 :
2043 p_so
) || scrolled
< min_scroll
)
2045 extra
+= boff
.height
;
2046 if (boff
.lnum
>= curwin
->w_botline
2048 || (boff
.lnum
+ 1 == curwin
->w_botline
2049 && boff
.fill
> curwin
->w_filler_rows
)
2053 /* Count screen lines that are below the window. */
2054 scrolled
+= boff
.height
;
2055 if (boff
.lnum
== curwin
->w_botline
2060 scrolled
-= curwin
->w_empty_rows
;
2066 /* curwin->w_empty_rows is larger, no need to scroll */
2069 /* more than a screenfull, don't scroll but redraw */
2070 else if (used
> curwin
->w_height
)
2072 /* scroll minimal number of lines */
2077 boff
.fill
= curwin
->w_topfill
;
2079 boff
.lnum
= curwin
->w_topline
- 1;
2080 for (i
= 0; i
< scrolled
&& boff
.lnum
< curwin
->w_botline
; )
2082 botline_forw(&boff
);
2086 if (i
< scrolled
) /* below curwin->w_botline, don't scroll */
2091 * Scroll up if the cursor is off the bottom of the screen a bit.
2092 * Otherwise put it at 1/2 of the screen.
2094 if (line_count
>= curwin
->w_height
&& line_count
> min_scroll
)
2095 scroll_cursor_halfway(FALSE
);
2097 scrollup(line_count
, TRUE
);
2100 * If topline didn't change we need to restore w_botline and w_empty_rows
2101 * (we changed them).
2102 * If topline did change, update_screen() will set botline.
2104 if (curwin
->w_topline
== old_topline
&& set_topbot
)
2106 curwin
->w_botline
= old_botline
;
2107 curwin
->w_empty_rows
= old_empty_rows
;
2108 curwin
->w_valid
= old_valid
;
2110 curwin
->w_valid
|= VALID_TOPLINE
;
2114 * Recompute topline to put the cursor halfway the window
2115 * If "atend" is TRUE, also put it halfway at the end of the file.
2118 scroll_cursor_halfway(atend
)
2131 loff
.lnum
= boff
.lnum
= curwin
->w_cursor
.lnum
;
2133 (void)hasFolding(loff
.lnum
, &loff
.lnum
, &boff
.lnum
);
2136 used
= plines_nofill(loff
.lnum
);
2140 used
= plines(loff
.lnum
);
2142 topline
= loff
.lnum
;
2145 if (below
<= above
) /* add a line below the cursor first */
2147 if (boff
.lnum
< curbuf
->b_ml
.ml_line_count
)
2149 botline_forw(&boff
);
2150 used
+= boff
.height
;
2151 if (used
> curwin
->w_height
)
2153 below
+= boff
.height
;
2157 ++below
; /* count a "~" line */
2163 if (below
> above
) /* add a line above the cursor */
2165 topline_back(&loff
);
2166 used
+= loff
.height
;
2167 if (used
> curwin
->w_height
)
2169 above
+= loff
.height
;
2170 topline
= loff
.lnum
;
2172 topfill
= loff
.fill
;
2177 if (!hasFolding(topline
, &curwin
->w_topline
, NULL
))
2179 curwin
->w_topline
= topline
;
2181 curwin
->w_topfill
= topfill
;
2182 check_topfill(curwin
, FALSE
);
2184 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
|VALID_BOTLINE_AP
);
2185 curwin
->w_valid
|= VALID_TOPLINE
;
2189 * Correct the cursor position so that it is in a part of the screen at least
2190 * 'so' lines from the top and bottom, if possible.
2191 * If not possible, put it at the same position as scroll_cursor_halfway().
2192 * When called topline must be valid!
2197 int above
= 0; /* screen lines above topline */
2199 int below
= 0; /* screen lines below botline */
2201 int above_wanted
, below_wanted
;
2202 linenr_T cln
; /* Cursor Line Number */
2206 * How many lines we would like to have above/below the cursor depends on
2207 * whether the first/last line of the file is on screen.
2209 above_wanted
= p_so
;
2210 below_wanted
= p_so
;
2212 if (mouse_dragging
> 0)
2214 above_wanted
= mouse_dragging
- 1;
2215 below_wanted
= mouse_dragging
- 1;
2218 if (curwin
->w_topline
== 1)
2221 max_off
= curwin
->w_height
/ 2;
2222 if (below_wanted
> max_off
)
2223 below_wanted
= max_off
;
2226 if (curwin
->w_botline
== curbuf
->b_ml
.ml_line_count
+ 1
2228 && mouse_dragging
== 0
2233 max_off
= (curwin
->w_height
- 1) / 2;
2234 if (above_wanted
> max_off
)
2235 above_wanted
= max_off
;
2239 * If there are sufficient file-lines above and below the cursor, we can
2242 cln
= curwin
->w_cursor
.lnum
;
2243 if (cln
>= curwin
->w_topline
+ above_wanted
2244 && cln
< curwin
->w_botline
- below_wanted
2246 && !hasAnyFolding(curwin
)
2252 * Narrow down the area where the cursor can be put by taking lines from
2253 * the top and the bottom until:
2254 * - the desired context lines are found
2255 * - the lines from the top is past the lines from the bottom
2257 topline
= curwin
->w_topline
;
2258 botline
= curwin
->w_botline
- 1;
2260 /* count filler lines as context */
2261 above
= curwin
->w_topfill
;
2262 below
= curwin
->w_filler_rows
;
2264 while ((above
< above_wanted
|| below
< below_wanted
) && topline
< botline
)
2266 if (below
< below_wanted
&& (below
<= above
|| above
>= above_wanted
))
2269 if (hasFolding(botline
, &botline
, NULL
))
2273 below
+= plines(botline
);
2276 if (above
< above_wanted
&& (above
< below
|| below
>= below_wanted
))
2279 if (hasFolding(topline
, NULL
, &topline
))
2284 above
+= plines(topline
);
2286 above
+= plines_nofill(topline
);
2288 /* Count filler lines below this line as context. */
2289 if (topline
< botline
)
2290 above
+= diff_check_fill(curwin
, topline
+ 1);
2295 if (topline
== botline
|| botline
== 0)
2296 curwin
->w_cursor
.lnum
= topline
;
2297 else if (topline
> botline
)
2298 curwin
->w_cursor
.lnum
= botline
;
2301 if (cln
< topline
&& curwin
->w_topline
> 1)
2303 curwin
->w_cursor
.lnum
= topline
;
2305 ~(VALID_WROW
|VALID_WCOL
|VALID_CHEIGHT
|VALID_CROW
);
2307 if (cln
> botline
&& curwin
->w_botline
<= curbuf
->b_ml
.ml_line_count
)
2309 curwin
->w_cursor
.lnum
= botline
;
2311 ~(VALID_WROW
|VALID_WCOL
|VALID_CHEIGHT
|VALID_CROW
);
2314 curwin
->w_valid
|= VALID_TOPLINE
;
2317 static void get_scroll_overlap
__ARGS((lineoff_T
*lp
, int dir
));
2320 * move screen 'count' pages up or down and update screen
2322 * return FAIL for failure, OK otherwise
2332 linenr_T old_topline
= curwin
->w_topline
;
2334 if (curbuf
->b_ml
.ml_line_count
== 1) /* nothing to do */
2340 for ( ; count
> 0; --count
)
2344 * It's an error to move a page up when the first line is already on
2345 * the screen. It's an error to move a page down when the last line
2346 * is on the screen and the topline is 'scrolloff' lines from the
2350 ? ((curwin
->w_topline
>= curbuf
->b_ml
.ml_line_count
- p_so
)
2351 && curwin
->w_botline
> curbuf
->b_ml
.ml_line_count
)
2352 : (curwin
->w_topline
== 1
2354 && curwin
->w_topfill
==
2355 diff_check_fill(curwin
, curwin
->w_topline
)
2369 if (firstwin
== lastwin
&& p_window
> 0 && p_window
< Rows
- 1)
2371 /* Vi compatible scrolling */
2373 ++curwin
->w_topline
;
2375 curwin
->w_topline
+= p_window
- 2;
2376 if (curwin
->w_topline
> curbuf
->b_ml
.ml_line_count
)
2377 curwin
->w_topline
= curbuf
->b_ml
.ml_line_count
;
2378 curwin
->w_cursor
.lnum
= curwin
->w_topline
;
2380 else if (curwin
->w_botline
> curbuf
->b_ml
.ml_line_count
)
2382 /* at end of file */
2383 curwin
->w_topline
= curbuf
->b_ml
.ml_line_count
;
2385 curwin
->w_topfill
= 0;
2387 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
);
2391 /* For the overlap, start with the line just below the window
2392 * and go upwards. */
2393 loff
.lnum
= curwin
->w_botline
;
2395 loff
.fill
= diff_check_fill(curwin
, loff
.lnum
)
2396 - curwin
->w_filler_rows
;
2398 get_scroll_overlap(&loff
, -1);
2399 curwin
->w_topline
= loff
.lnum
;
2401 curwin
->w_topfill
= loff
.fill
;
2402 check_topfill(curwin
, FALSE
);
2404 curwin
->w_cursor
.lnum
= curwin
->w_topline
;
2405 curwin
->w_valid
&= ~(VALID_WCOL
|VALID_CHEIGHT
|VALID_WROW
|
2406 VALID_CROW
|VALID_BOTLINE
|VALID_BOTLINE_AP
);
2409 else /* dir == BACKWARDS */
2412 if (curwin
->w_topline
== 1)
2414 /* Include max number of filler lines */
2419 if (firstwin
== lastwin
&& p_window
> 0 && p_window
< Rows
- 1)
2421 /* Vi compatible scrolling (sort of) */
2423 --curwin
->w_topline
;
2425 curwin
->w_topline
-= p_window
- 2;
2426 if (curwin
->w_topline
< 1)
2427 curwin
->w_topline
= 1;
2428 curwin
->w_cursor
.lnum
= curwin
->w_topline
+ p_window
- 1;
2429 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
2430 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
2434 /* Find the line at the top of the window that is going to be the
2435 * line at the bottom of the window. Make sure this results in
2436 * the same line as before doing CTRL-F. */
2437 loff
.lnum
= curwin
->w_topline
- 1;
2439 loff
.fill
= diff_check_fill(curwin
, loff
.lnum
+ 1)
2440 - curwin
->w_topfill
;
2442 get_scroll_overlap(&loff
, 1);
2444 if (loff
.lnum
>= curbuf
->b_ml
.ml_line_count
)
2446 loff
.lnum
= curbuf
->b_ml
.ml_line_count
;
2452 botline_topline(&loff
);
2455 curwin
->w_cursor
.lnum
= loff
.lnum
;
2457 /* Find the line just above the new topline to get the right line
2458 * at the bottom of the window. */
2460 while (n
<= curwin
->w_height
&& loff
.lnum
>= 1)
2462 topline_back(&loff
);
2465 if (n
<= curwin
->w_height
) /* at begin of file */
2467 curwin
->w_topline
= 1;
2471 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
2475 /* Go two lines forward again. */
2477 topline_botline(&loff
);
2479 botline_forw(&loff
);
2480 botline_forw(&loff
);
2482 botline_topline(&loff
);
2485 /* We're at the wrong end of a fold now. */
2486 (void)hasFolding(loff
.lnum
, &loff
.lnum
, NULL
);
2489 /* Always scroll at least one line. Avoid getting stuck on
2490 * very long lines. */
2491 if (loff
.lnum
>= curwin
->w_topline
2493 && (loff
.lnum
> curwin
->w_topline
2494 || loff
.fill
>= curwin
->w_topfill
)
2499 /* First try using the maximum number of filler lines. If
2500 * that's not enough, backup one line. */
2501 loff
.fill
= curwin
->w_topfill
;
2502 if (curwin
->w_topfill
< diff_check_fill(curwin
,
2505 if (curwin
->w_topfill
== loff
.fill
)
2508 --curwin
->w_topline
;
2510 curwin
->w_topfill
= 0;
2513 comp_botline(curwin
);
2514 curwin
->w_cursor
.lnum
= curwin
->w_botline
- 1;
2515 curwin
->w_valid
&= ~(VALID_WCOL
|VALID_CHEIGHT
|
2516 VALID_WROW
|VALID_CROW
);
2520 curwin
->w_topline
= loff
.lnum
;
2522 curwin
->w_topfill
= loff
.fill
;
2523 check_topfill(curwin
, FALSE
);
2525 curwin
->w_valid
&= ~(VALID_WROW
|VALID_CROW
|VALID_BOTLINE
);
2535 beginline(BL_SOL
| BL_FIX
);
2536 curwin
->w_valid
&= ~(VALID_WCOL
|VALID_WROW
|VALID_VIRTCOL
);
2539 * Avoid the screen jumping up and down when 'scrolloff' is non-zero.
2540 * But make sure we scroll at least one line (happens with mix of long
2541 * wrapping lines and non-wrapping line).
2543 if (retval
== OK
&& dir
== FORWARD
&& check_top_offset())
2545 scroll_cursor_top(1, FALSE
);
2546 if (curwin
->w_topline
<= old_topline
2547 && old_topline
< curbuf
->b_ml
.ml_line_count
)
2549 curwin
->w_topline
= old_topline
+ 1;
2551 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
2556 redraw_later(VALID
);
2561 * Decide how much overlap to use for page-up or page-down scrolling.
2562 * This is symmetric, so that doing both keeps the same lines displayed.
2563 * Three lines are examined:
2565 * before CTRL-F after CTRL-F / before CTRL-B
2567 * l1 last but one line ------------
2568 * l2 last text line l2 top text line
2569 * ------------- l3 second text line
2573 get_scroll_overlap(lp
, dir
)
2578 int min_height
= curwin
->w_height
- 2;
2579 lineoff_T loff0
, loff1
, loff2
;
2585 lp
->height
= plines_nofill(lp
->lnum
);
2587 lp
->height
= plines(lp
->lnum
);
2590 if (h1
> min_height
)
2591 return; /* no overlap */
2599 if (h2
+ h1
> min_height
)
2601 *lp
= loff0
; /* no overlap */
2611 if (h3
+ h2
> min_height
)
2613 *lp
= loff0
; /* no overlap */
2623 if (h4
+ h3
+ h2
> min_height
|| h3
+ h2
+ h1
> min_height
)
2624 *lp
= loff1
; /* 1 line overlap */
2626 *lp
= loff2
; /* 2 lines overlap */
2630 /* #define KEEP_SCREEN_LINE */
2632 * Scroll 'scroll' lines up or down.
2635 halfpage(flag
, Prenum
)
2645 curwin
->w_p_scr
= (Prenum
> curwin
->w_height
) ?
2646 curwin
->w_height
: Prenum
;
2647 n
= (curwin
->w_p_scr
<= curwin
->w_height
) ?
2648 curwin
->w_p_scr
: curwin
->w_height
;
2651 room
= curwin
->w_empty_rows
;
2653 room
+= curwin
->w_filler_rows
;
2658 * scroll the text up
2660 while (n
> 0 && curwin
->w_botline
<= curbuf
->b_ml
.ml_line_count
)
2663 if (curwin
->w_topfill
> 0)
2666 if (--n
< 0 && scrolled
> 0)
2668 --curwin
->w_topfill
;
2674 i
= plines_nofill(curwin
->w_topline
);
2676 i
= plines(curwin
->w_topline
);
2679 if (n
< 0 && scrolled
> 0)
2682 (void)hasFolding(curwin
->w_topline
, NULL
, &curwin
->w_topline
);
2684 ++curwin
->w_topline
;
2686 curwin
->w_topfill
= diff_check_fill(curwin
, curwin
->w_topline
);
2689 #ifndef KEEP_SCREEN_LINE
2690 if (curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
2692 ++curwin
->w_cursor
.lnum
;
2694 ~(VALID_VIRTCOL
|VALID_CHEIGHT
|VALID_WCOL
);
2698 curwin
->w_valid
&= ~(VALID_CROW
|VALID_WROW
);
2702 * Correct w_botline for changed w_topline.
2703 * Won't work when there are filler lines.
2706 if (curwin
->w_p_diff
)
2707 curwin
->w_valid
&= ~(VALID_BOTLINE
|VALID_BOTLINE_AP
);
2714 i
= plines(curwin
->w_botline
);
2718 (void)hasFolding(curwin
->w_botline
, NULL
,
2719 &curwin
->w_botline
);
2721 ++curwin
->w_botline
;
2723 } while (curwin
->w_botline
<= curbuf
->b_ml
.ml_line_count
);
2727 #ifndef KEEP_SCREEN_LINE
2729 * When hit bottom of the file: move cursor down.
2733 # ifdef FEAT_FOLDING
2734 if (hasAnyFolding(curwin
))
2737 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
2739 (void)hasFolding(curwin
->w_cursor
.lnum
, NULL
,
2740 &curwin
->w_cursor
.lnum
);
2741 ++curwin
->w_cursor
.lnum
;
2746 curwin
->w_cursor
.lnum
+= n
;
2747 check_cursor_lnum();
2750 /* try to put the cursor in the same screen line */
2751 while ((curwin
->w_cursor
.lnum
< curwin
->w_topline
|| scrolled
> 0)
2752 && curwin
->w_cursor
.lnum
< curwin
->w_botline
- 1)
2754 scrolled
-= plines(curwin
->w_cursor
.lnum
);
2755 if (scrolled
< 0 && curwin
->w_cursor
.lnum
>= curwin
->w_topline
)
2757 # ifdef FEAT_FOLDING
2758 (void)hasFolding(curwin
->w_cursor
.lnum
, NULL
,
2759 &curwin
->w_cursor
.lnum
);
2761 ++curwin
->w_cursor
.lnum
;
2768 * scroll the text down
2770 while (n
> 0 && curwin
->w_topline
> 1)
2773 if (curwin
->w_topfill
< diff_check_fill(curwin
, curwin
->w_topline
))
2776 if (--n
< 0 && scrolled
> 0)
2778 ++curwin
->w_topfill
;
2784 i
= plines_nofill(curwin
->w_topline
- 1);
2786 i
= plines(curwin
->w_topline
- 1);
2789 if (n
< 0 && scrolled
> 0)
2791 --curwin
->w_topline
;
2793 (void)hasFolding(curwin
->w_topline
, &curwin
->w_topline
, NULL
);
2796 curwin
->w_topfill
= 0;
2799 curwin
->w_valid
&= ~(VALID_CROW
|VALID_WROW
|
2800 VALID_BOTLINE
|VALID_BOTLINE_AP
);
2802 #ifndef KEEP_SCREEN_LINE
2803 if (curwin
->w_cursor
.lnum
> 1)
2805 --curwin
->w_cursor
.lnum
;
2806 curwin
->w_valid
&= ~(VALID_VIRTCOL
|VALID_CHEIGHT
|VALID_WCOL
);
2810 #ifndef KEEP_SCREEN_LINE
2812 * When hit top of the file: move cursor up.
2816 if (curwin
->w_cursor
.lnum
<= (linenr_T
)n
)
2817 curwin
->w_cursor
.lnum
= 1;
2819 # ifdef FEAT_FOLDING
2820 if (hasAnyFolding(curwin
))
2822 while (--n
>= 0 && curwin
->w_cursor
.lnum
> 1)
2824 --curwin
->w_cursor
.lnum
;
2825 (void)hasFolding(curwin
->w_cursor
.lnum
,
2826 &curwin
->w_cursor
.lnum
, NULL
);
2831 curwin
->w_cursor
.lnum
-= n
;
2834 /* try to put the cursor in the same screen line */
2835 scrolled
+= n
; /* move cursor when topline is 1 */
2836 while (curwin
->w_cursor
.lnum
> curwin
->w_topline
2837 && (scrolled
> 0 || curwin
->w_cursor
.lnum
>= curwin
->w_botline
))
2839 scrolled
-= plines(curwin
->w_cursor
.lnum
- 1);
2840 if (scrolled
< 0 && curwin
->w_cursor
.lnum
< curwin
->w_botline
)
2842 --curwin
->w_cursor
.lnum
;
2843 # ifdef FEAT_FOLDING
2849 # ifdef FEAT_FOLDING
2850 /* Move cursor to first line of closed fold. */
2854 check_topfill(curwin
, !flag
);
2857 beginline(BL_SOL
| BL_FIX
);
2858 redraw_later(VALID
);