Lines Matching refs:motion
128 #define lastmotion editb.e_globals[2] /* last motion */
129 #define lastrepeat editb.e_mode /* last repeat count for motion cmds */
143 #define repeat editb.e_repeat /* repeat count for motion cmds */
1160 /*{ DELMOTION( motion, mode )
1162 * Delete thru motion.
1174 delmotion(motion, mode)
1175 int motion;
1189 /*** fake out the motion routines by appending a blank ***/
1192 end = mvcursor(motion);
1198 if( mode=='c' && end>begin && strchr("wW", motion) )
1212 if( strchr("eE;,TtFf%", motion) )
1513 /*{ MVCURSOR( motion )
1515 * This routine will move the virtual cursor according to motion
1523 mvcursor(motion)
1524 register int motion;
1532 switch(motion)
1558 motion = first_virt;
1563 motion = last_virt;
1567 if( incr*tcur_virt < motion)
1570 if( incr*tcur_virt > motion)
1571 tcur_virt = motion;
1582 backword(repeat, motion);
1591 endword(repeat, motion);
1602 if(motion==';')
1611 if(motion==',')
1630 last_find = motion;
1686 forward(repeat, motion);
2495 case 'y': /** yank thru motion **/