Lines Matching refs:from
644 static int vi_yank(char reg, size_t from, int flags)
646 size_t start = from, end = TT.cursor;
650 if (TT.vi_mov_flag&0x80000000) start = TT.cursor, end = from;
653 if (TT.yank.alloc < end-from) {
654 size_t new_bounds = (1+end-from)/1024;
655 new_bounds += ((1+end-from)%1024) ? 1 : 0;
669 static int vi_delete(char reg, size_t from, int flags)
671 size_t start = from, end = TT.cursor;
673 vi_yank(reg, from, flags);
676 start = TT.cursor, end = from;
823 size_t from = TT.cursor;
834 vi_delete(reg, from, 0);
1007 //TODO check register where to push from
1140 int (*vi_cmd)(char, size_t, int);//REG,from,FLAGS
1415 //if clipped area is substring from cursor row start