| /vim-8.2.3635/src/testdir/ |
| H A D | test_scroll_opt.vim | 1 " Test for reset 'scroll' 4 let scr = &l:scroll 6 setlocal scroll=1 7 setlocal scroll& 10 setlocal scroll=1 11 setlocal scroll=0 24 let scr = &l:scroll 26 setlocal scroll=1 27 setlocal scroll& 30 setlocal scroll=1 [all …]
|
| H A D | test_ex_z.vim | 12 " If there is only one window, then twice the amount of 'scroll' is used. 13 set scroll=2 80 set window& scroll&
|
| H A D | test_gui.vim | 707 " scroll to move line 11 at top, moves the cursor there 713 " scroll to move line 1 at top, cursor stays in line 11 730 " scroll to character 11, cursor is moved 960 " scroll up 967 " scroll down 976 " scroll left 983 " scroll right
|
| H A D | test_display.vim | 118 " move to end of line and scroll 2 characters back 130 " move to end of line and scroll 2 characters back
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | scroll.txt | 1 *scroll.txt* For Vim version 8.2. Last change: 2019 May 13 19 1. Scrolling downwards |scroll-down| 20 2. Scrolling upwards |scroll-up| 21 3. Scrolling relative to cursor |scroll-cursor| 22 4. Scrolling horizontally |scroll-horizontal| 23 5. Scrolling synchronously |scroll-binding| 24 6. Scrolling with a mouse wheel |scroll-mouse-wheel| 27 1. Scrolling downwards *scroll-down* 63 2. Scrolling upwards *scroll-up* 144 4. Scrolling horizontally *scroll-horizontal* [all …]
|
| H A D | usr_25.txt | 300 When you move the cursor to a character that can't be seen, Vim will scroll 311 scroll the text. The cursor will stay in the same place, but it's moved back 314 zh scroll right 315 4zh scroll four characters right 316 zH scroll half a window width right 317 ze scroll right to put the cursor at the end 318 zl scroll left 319 4zl scroll four characters left 320 zL scroll half a window width left 321 zs scroll left to put the cursor at the start [all …]
|
| H A D | howto.txt | 46 |03.7| scroll 47 |'sidescroll'| scroll horizontally/sideways
|
| H A D | tags | 859 'scroll' options.txt /*'scroll'* 8965 scroll-binding scroll.txt /*scroll-binding* 8966 scroll-cursor scroll.txt /*scroll-cursor* 8967 scroll-down scroll.txt /*scroll-down* 8968 scroll-horizontal scroll.txt /*scroll-horizontal* 8969 scroll-insert tips.txt /*scroll-insert* 8970 scroll-mouse-wheel scroll.txt /*scroll-mouse-wheel* 8971 scroll-region term.txt /*scroll-region* 8972 scroll-smooth tips.txt /*scroll-smooth* 8973 scroll-up scroll.txt /*scroll-up* [all …]
|
| H A D | tips.txt | 19 Scrolling in Insert mode |scroll-insert| 20 Smooth scrolling |scroll-smooth| 173 Scrolling in Insert mode *scroll-insert* 176 screen, you can use CTRL-X CTRL-E and CTRL-X CTRL-Y to scroll the screen. 192 Smooth scrolling *scroll-smooth* 252 zt scroll to move this line to the top of the window
|
| H A D | term.txt | 255 *xterm-scroll-region* 257 contain the entry for scroll regions. Add ":cs=\E[%i%d;%dr:" to the xterm 316 t_CS if non-empty, cursor relative to scroll region *t_CS* *'t_CS'* 319 t_da if non-empty, lines from above scroll down *t_da* *'t_da'* 320 t_db if non-empty, lines from below scroll up *t_db* *'t_db'* 340 t_sr scroll reverse (backward) *t_sr* *'t_sr'* 638 *scroll-region* 724 off the screen (e.g., with "j") Vim will scroll 5 lines at a time. Another 735 This will redraw the window instead of scroll it. 760 with a mouse wheel see |scroll-mouse-wheel|. [all …]
|
| H A D | usr_03.txt | 299 To scroll one line at a time use CTRL-E (scroll up) and CTRL-Y (scroll down). 301 key mappings CTRL-Y will redo a change instead of scroll.) 303 To scroll forward by a whole screen (except for two lines) use CTRL-F. To 304 scroll backwards, use CTRL-B. These should be easy to remember: F for
|
| H A D | vi_diff.txt | 342 shown, the screen will scroll horizontally. The minimum number of 344 and |zl| commands can be used to scroll sideways. 900 |CTRL-B| scroll N screens Backwards 902 |CTRL-D| scroll Down N lines (default: half a screen); Vim scrolls 903 'scroll' screen lines, Vi scrolls file lines; makes a 905 |CTRL-E| scroll N lines upwards (N lines Extra) 906 |CTRL-F| scroll N screens Forward 920 while Vim scrolls 'scroll' screen lines; makes a difference 922 |CTRL-Y| scroll N lines downwards 1094 'scroll' 'scr' lines to scroll with CTRL-U and CTRL-D [all …]
|
| H A D | testing.txt | 107 4 scroll wheel down 108 5 scroll wheel up 109 6 scroll wheel left 110 7 scroll wheel right
|
| H A D | index.txt | 158 |i_CTRL-X_CTRL-E| CTRL-X CTRL-E scroll up 168 |i_CTRL-X_CTRL-Y| CTRL-X CTRL-Y scroll down 205 |CTRL-B| CTRL-B 1 scroll N screens Backwards 209 |CTRL-F| CTRL-F 1 scroll N screens Forward 233 |CTRL-Y| CTRL-Y scroll N lines downwards 837 |zH| zH when 'wrap' off scroll half a screenwidth 839 |zL| zL when 'wrap' off scroll half a screenwidth 853 |ze| ze when 'wrap' off scroll horizontally to 858 |zh| zh when 'wrap' off scroll screen N characters 871 |zs| zs when 'wrap' off scroll horizontally to [all …]
|
| H A D | Makefile | 99 scroll.txt \ 243 scroll.html \
|
| H A D | quickref.txt | 246 |zh| N zh scroll screen N characters to the right 247 |zl| N zl scroll screen N characters to the left 248 |zH| N zH scroll screen half a screenwidth to the right 249 |zL| N zL scroll screen half a screenwidth to the left 873 'scroll' 'scr' lines to scroll with CTRL-U and CTRL-D 874 'scrollbind' 'scb' scroll in window as other windows scroll 875 'scrollfocus' 'scf' scroll wheel applies to window under pointer 876 'scrolljump' 'sj' minimum number of lines to scroll 904 'sidescroll' 'ss' minimum number of columns to scroll horizontal 967 'ttyscroll' 'tsl' maximum number of lines for a scroll [all …]
|
| /vim-8.2.3635/src/libvterm/t/ |
| H A D | 62screen_damage.test | 94 !Merge scroll 108 !Merge scroll with damage 117 !Merge scroll with damage past region 122 !Damage entirely outside scroll region 129 !Damage overlapping scroll region 140 !Merge scroll*2 with damage
|
| H A D | 67screen_dbl_wh.test | 34 !DWL doesn't spill over on scroll
|
| H A D | 15state_mode.test | 83 !Origin mode without scroll region
|
| H A D | 63screen_resize.test | 39 !Resize shorter with content must scroll
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | csscomplete.vim | 9 …on scroll-behavior scroll-snap-coordinate scroll-snap-destination scroll-snap-points-x scroll-snap… 150 let values = ["scroll", "fixed"] 169 …let values = ["scroll", "fixed"] + color_values + ["url(", "none"] + ["top", "center", "bottom", "… 388 let values = ["visible", "hidden", "scroll", "auto"] 425 elseif prop == 'scroll-behavior' 427 elseif prop == 'scroll-snap-coordinate' 429 elseif prop == 'scroll-snap-destination' 431 elseif prop == 'scroll-snap-points-\%(x\|y\)$' 433 elseif prop == 'scroll-snap-type\%(-x\|-y\)\=$' 551 let values = ["auto", "scroll-position", "contents"] + s:values
|
| /vim-8.2.3635/src/libvterm/src/ |
| H A D | state.c | 172 scroll(state, rect, 1, 0); in linefeed() 418 scroll(state, rect, 0, -1); in on_text() 538 scroll(state, rect, -1, 0); in on_control() 1019 scroll(state, rect, 0, -count); in on_csi() 1182 scroll(state, rect, -count, 0); in on_csi() 1197 scroll(state, rect, count, 0); in on_csi() 1215 scroll(state, rect, 0, count); in on_csi() 1227 scroll(state, rect, count, 0); in on_csi() 1239 scroll(state, rect, -count, 0); in on_csi() 1547 scroll(state, rect, 0, -count); in on_csi() [all …]
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | 8th.vim | 208 Builtin scale img:scale scroll img:scroll size img:size countries iso:countries find loc:find sort… 256 …etmap nk:getmap gl? nk:gl? grid nk:grid grid-push nk:grid-push group-scroll-ofs nk:group-scroll-ofs 257 Builtin group-scroll-ofs! nk:group-scroll-ofs! hovered? nk:hovered? image nk:image init nk:init in… 258 Builtin input-key nk:input-key input-motion nk:input-motion input-scroll nk:input-scroll input-str… 275 …nk:popup-close popup-end nk:popup-end popup-scroll-ofs nk:popup-scroll-ofs popup-scroll-ofs! nk:po… 295 …overed? nk:win-hovered? win-pos nk:win-pos win-scroll-ofs nk:win-scroll-ofs win-scroll-ofs! nk:win…
|
| H A D | progress.vim | 84 …served sax-write-idle sax-write-tag schema screen screen-io screen-lines scroll sdbname search sea… 240 …ge schema-location schema-marshal schema-path screen-val[ue] scroll-bars scroll-delta scroll-offset 241 syn keyword ProgressOperator scroll-to-current-row scroll-to-i[tem] scroll-to-selected-row scrollab…
|
| /vim-8.2.3635/runtime/ |
| H A D | defaults.vim | 50 " text scroll if you mouse-click near the start or end of the window. 77 " can position the cursor, Visually select and scroll with the mouse.
|