Lines Matching refs:repeat

123 	int repeat;		/* repeat count for motion cmds */
124 int lastrepeat; /* last repeat count for motion cmds */
401 vp->repeat = 1;
730 vp->repeat = 1;
756 vp->lastrepeat = vp->repeat;
764 vp->repeat = 1;
768 /*** see if it's a repeat of the last command ***/
773 vp->repeat = vp->lastrepeat;
792 vp->lastrepeat = vp->repeat;
794 vp->repeat = 1;
857 curhline += vp->repeat;
887 curhline -= vp->repeat;
890 curhline += vp->repeat;
935 case 'G': /** goto command repeat **/
937 vp->repeat = histmin+1;
938 if( vp->repeat <= histmin || vp->repeat > histmax )
942 curhline = vp->repeat;
1009 vp->repeat = 1;
1016 vp->repeat = 1;
1021 vp->repeat = 1;
1268 * Set repeat to the user typed number and return the terminating
1277 /*** get any repeat count ***/
1291 vp->repeat *= i;
1529 * for repeat times.
1557 tcur_virt = vp->repeat-1;
1622 tcur_virt += vp->repeat*incr;
1633 backword(vp,vp->repeat, motion);
1642 endword(vp, vp->repeat, motion);
1686 count = vp->repeat;
1736 forward(vp,vp->repeat, motion);
2101 * mode = 'N' repeat last search in reverse direction
2102 * mode = 'n' repeat last search
2157 /*** user wants repeat of last search ***/
2294 * mode != 0, repeat previous operation
2302 register int trepeat = vp->repeat;
2334 if(ed_expand(vp->ed,(char*)virtual, &cur_virt, &last_virt, c, vp->repeat_set?vp->repeat:-1)<0)
2387 vp->repeat = -1;
2388 p = (genchar*)hist_word((char*)tmpbuf,MAXLINE,vp->repeat);
2561 cdelete(vp,vp->repeat, BAD);
2592 case 'x': /** delete repeat chars forward - dl **/
2596 case 'X': /** delete repeat chars backward - dh **/