Home
last modified time | relevance | path

Searched refs:bot (Results 1 – 25 of 25) sorted by relevance

/vim-8.2.3635/src/
H A Dfold.c837 && fp->fd_top < bot) in foldUpdate()
2179 bot += diff_context; in foldUpdateIEMS()
2299 end = bot; in foldUpdateIEMS()
2364 if (end != bot) in foldUpdateIEMS()
2406 linenr_T bot, in foldUpdateIEMSRecurse() argument
2653 return bot; in foldUpdateIEMSRecurse()
2708 bot = flp->lnum; in foldUpdateIEMSRecurse()
2762 return bot; in foldUpdateIEMSRecurse()
2854 return bot; in foldUpdateIEMSRecurse()
2890 linenr_T bot) in foldSplit() argument
[all …]
H A Dundo.c248 u_save(linenr_T top, linenr_T bot) in u_save() argument
253 if (top >= bot || bot > curbuf->b_ml.ml_line_count + 1) in u_save()
256 if (top + 2 == bot) in u_save()
413 linenr_T bot, in u_savecommon() argument
479 if (bot - top > 1) in u_savecommon()
483 if (bot <= curbuf->b_ml.ml_line_count in u_savecommon()
486 ++bot; in u_savecommon()
493 size = bot - top - 1; in u_savecommon()
2672 linenr_T top, bot; in u_undoredo() local
2711 bot = uep->ue_bot; in u_undoredo()
[all …]
H A Dmbyte.c1140 int mid, bot, top; in intable() local
1147 bot = 0; in intable()
1149 while (top >= bot) in intable()
1151 mid = (bot + top) / 2; in intable()
1153 bot = mid + 1; in intable()
2871 int bot = 0; in utf_class_buf() local
2890 while (top >= bot) in utf_class_buf()
2894 bot = mid + 1; in utf_class_buf()
5470 int mid, bot, top; in cw_value() local
5480 bot = 0; in cw_value()
[all …]
H A Dregexp.c1271 pos_T top, bot; in reg_match_visual() local
1290 bot = wp->w_cursor; in reg_match_visual()
1295 bot = VIsual; in reg_match_visual()
1305 bot = curbuf->b_visual.vi_end; in reg_match_visual()
1310 bot = curbuf->b_visual.vi_start; in reg_match_visual()
1316 if (lnum < top.lnum || lnum > bot.lnum) in reg_match_visual()
1323 || (lnum == bot.lnum && col >= bot.col + (*p_sel != 'e'))) in reg_match_visual()
1329 getvvcol(wp, &bot, &start2, NULL, &end2); in reg_match_visual()
1334 if (top.col == MAXCOL || bot.col == MAXCOL || curswant == MAXCOL) in reg_match_visual()
H A Ddrawline.c540 pos_T *top, *bot; in win_line() local
546 bot = &VIsual; in win_line()
552 bot = &curwin->w_cursor; in win_line()
554 lnum_in_visual_area = (lnum >= top->lnum && lnum <= bot->lnum); in win_line()
567 if (lnum > top->lnum && lnum <= bot->lnum) in win_line()
580 if (VIsual_mode != 'V' && lnum == bot->lnum) in win_line()
582 if (*p_sel == 'e' && bot->col == 0 && bot->coladd == 0) in win_line()
587 else if (bot->col == MAXCOL) in win_line()
591 pos = *bot; in win_line()
H A Dmove.c1788 linenr_T bot; // just below displayed lines in scroll_cursor_top() local
1812 if (hasFolding(curwin->w_cursor.lnum, &top, &bot)) in scroll_cursor_top()
1815 ++bot; in scroll_cursor_top()
1821 bot = curwin->w_cursor.lnum + 1; in scroll_cursor_top()
1846 if (extra + i <= off && bot < curbuf->b_ml.ml_line_count) in scroll_cursor_top()
1849 if (hasFolding(bot, NULL, &bot)) in scroll_cursor_top()
1854 used += plines(bot); in scroll_cursor_top()
1871 ++bot; in scroll_cursor_top()
H A Dgui_at_sb.c1127 GC top, bot; in _Xaw3dDrawShadows() local
1132 bot = sbw->scrollbar.bot_shadow_GC; in _Xaw3dDrawShadows()
1137 bot = sbw->scrollbar.top_shadow_GC; in _Xaw3dDrawShadows()
1165 XFillPolygon (dpy, win, bot, pt, 6, Complex, CoordModeOrigin); in _Xaw3dDrawShadows()
H A Ddrawscreen.c1073 pos_T *top, *bot; in fold_line() local
1289 bot = &VIsual; in fold_line()
1295 bot = &curwin->w_cursor; in fold_line()
1298 && lnume <= bot->lnum in fold_line()
1303 && (lnume < bot->lnum in fold_line()
1304 || (lnume == bot->lnum in fold_line()
1305 && (bot->col - (*p_sel == 'e')) in fold_line()
H A Dnormal.c440 int top, bot; in find_command() local
458 bot = nv_max_linear + 1; in find_command()
461 while (bot <= top) in find_command()
463 i = (top + bot) / 2; in find_command()
473 bot = i + 1; in find_command()
1823 linenr_T top, bot; in clear_showcmd() local
1829 bot = curwin->w_cursor.lnum; in clear_showcmd()
1834 bot = VIsual.lnum; in clear_showcmd()
1839 (void)hasFolding(bot, NULL, &bot); in clear_showcmd()
1841 lines = bot - top + 1; in clear_showcmd()
H A Dnetbeans.c2990 netbeans_is_guarded(linenr_T top, linenr_T bot) in netbeans_is_guarded() argument
3000 for (lnum = top + 1; lnum < bot; lnum++) in netbeans_is_guarded()
/vim-8.2.3635/src/proto/
H A Dundo.pro3 int u_save(linenr_T top, linenr_T bot);
8 int u_savecommon(linenr_T top, linenr_T bot, linenr_T newbot, int reload);
H A Dnetbeans.pro25 int netbeans_is_guarded(linenr_T top, linenr_T bot);
H A Dfold.pro26 void foldUpdate(win_T *wp, linenr_T top, linenr_T bot);
/vim-8.2.3635/src/testdir/
H A Dtest_winbuf_close.vim109 bot split Xtest2
111 bot split Xtest3
H A Dtest_window_cmd.vim291 bot vsplit
H A Dtest_signs.vim35 bot split
/vim-8.2.3635/runtime/syntax/
H A Dinitex.vim123 \ '\\\%(insert\|split\%(bot\|first\)mark\|vsplit\)\>'
134 \ '\\\%(bot\|first\|top\)\=mark\>'
H A Dmf.vim117 syn keyword mfVardef bot byte ceiling counterclockwise cutoff decr dir
125 syn match mpVardef "\<good\.\%(x\|y\|lft\|rt\|top\|bot\)\>"
H A Dplaintex.vim94 …\ '\\\%(angle\|backslash\|bot\|clubsuit\|emptyset\|epsilon\|exists\|flat\|forall\|hbar\|heartsuit\…
H A Dmp.vim116 syn keyword mpVardef arrowhead bbox bot buildcycle byte ceiling center
139 …syn match mpVariable /\<\%(laboff\|labxf\|labyf\)\.\%(lft\|rt\|bot\|top\|ulft\|urt\|llft\|lr…
182 syn match mpVardef "\<good\.\%(x\|y\|lft\|rt\|top\|bot\)\>"
H A Dprogress.vim78 syn keyword ProgressReserved os-rename otherwise output overlay page page-bot[tom] page-num[ber] pa…
H A Dtex.vim728 \ ['bot' , '⊥'],
/vim-8.2.3635/runtime/autoload/
H A Dnetrw.vim4938 exe "keepalt ".(g:netrw_alto? "top " : "bot ")."vert ".winsz."wincmd s"
8597 " call Decho("exe ".(g:netrw_alto? "top " : "bot ")."vert ".winsz."wincmd s",'~'.expand("<slnum>…
8598 exe (g:netrw_alto? "top " : "bot ")."vert ".winsz."wincmd s"
8907 " 1 : vert 0: bot -- preview window is vertically split off and on the right
8909 " 0 : 0: bot -- preview window is horizontally split off and on the bottom
8913 " call Decho("exe ".(g:netrw_alto? "top " : "bot ").(g:netrw_preview? "vert " : "")."pedit ".fna…
8916 exe (g:netrw_alto? "top " : "bot ").(g:netrw_preview? "vert " : "")."pedit ".fnameescape(a:path)
/vim-8.2.3635/runtime/doc/
H A Dversion6.txt445 :vert bot dsplit DEBUG
H A Dversion8.txt9326 Solution: Implement it. Add "in-top" and "in-bot" options.
33782 Problem: Delaying half a second after the top-bot message.