Lines Matching defs:onto
1045 static int gl_find_char(GetLine *gl, int count, int forward, int onto, char c);
1075 * In vi mode this is used to delete up to or onto a given or read
1080 int onto, int change);
1086 static int gl_copy_find(GetLine *gl, int count, char c, int forward, int onto);
4125 * most terminals won't move the cursor onto the next line until we
4552 * onto int True if the search should end on top of the
4565 int onto, int change)
4570 int pos = gl_find_char(gl, count, forward, onto, c);
7328 * but not onto, the found character.
7338 * but not onto, the found character.
7355 * onto int True if the search should end on top of the
7365 static int gl_find_char(GetLine *gl, int count, int forward, int onto, char c)
7386 gl->vi.find_onto = onto;
7415 if(!onto && pos<gl->ntotal)
7439 if(!onto && pos>=gl->insert_curpos)
7672 * onto int True if the search should end on top of the
7681 static int gl_copy_find(GetLine *gl, int count, char c, int forward, int onto)
7687 int pos = gl_find_char(gl, count, forward, onto, c);