Home
last modified time | relevance | path

Searched refs:newbot (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/
H A Dgui_at_sb.c347 Position oldtop, oldbot, newtop, newbot; in PaintThumb() local
353 newbot = newtop + (int)(tzl * sbw->scrollbar.shown) + 1; in PaintThumb()
354 if (newbot < newtop + (int)sbw->scrollbar.min_thumb) in PaintThumb()
355 newbot = newtop + sbw->scrollbar.min_thumb; in PaintThumb()
360 sbw->scrollbar.shownLength = newbot - newtop; in PaintThumb()
364 FillArea(sbw, newtop, AT_MIN(newbot, oldtop+1),1,0); in PaintThumb()
367 if (newbot < oldbot) in PaintThumb()
368 FillArea(sbw, AT_MAX(newbot, oldtop), oldbot, 0,0); in PaintThumb()
369 if (newbot > oldbot) in PaintThumb()
370 FillArea(sbw, AT_MAX(newtop, oldbot-1), newbot, 1,0); in PaintThumb()
[all …]
H A Dundo.c414 linenr_T newbot, in u_savecommon() argument
487 if (newbot != 0) in u_savecommon()
488 ++newbot; in u_savecommon()
670 if (newbot != 0) in u_savecommon()
671 uep->ue_bot = newbot; in u_savecommon()
712 if (newbot != 0) in u_savecommon()
713 uep->ue_bot = newbot; in u_savecommon()
/vim-8.2.3635/src/proto/
H A Dundo.pro8 int u_savecommon(linenr_T top, linenr_T bot, linenr_T newbot, int reload);