Lines Matching refs:repeat

250   ViRepeat repeat;           /* Information needed to implement the vi */  member
1820 gl->vi.repeat.action.fn = 0; in new_GetLine()
1821 gl->vi.repeat.action.data = 0; in new_GetLine()
1822 gl->vi.repeat.count = 0; in new_GetLine()
1823 gl->vi.repeat.input_curpos = 0; in new_GetLine()
1824 gl->vi.repeat.command_curpos = 0; in new_GetLine()
1825 gl->vi.repeat.input_char = '\0'; in new_GetLine()
1826 gl->vi.repeat.saved = 0; in new_GetLine()
1827 gl->vi.repeat.active = 0; in new_GetLine()
7130 if(gl->vi.repeat.active) { in KT_KEY_FN()
7131 c = gl->vi.repeat.input_char; in KT_KEY_FN()
7135 gl->vi.repeat.input_char = c; in KT_KEY_FN()
7377 if(gl->vi.repeat.active) { in gl_find_char()
7816 if(gl->vi.command && !gl->vi.repeat.saved && in gl_save_for_undo()
7818 gl->vi.repeat.action = gl->current_action; in gl_save_for_undo()
7819 gl->vi.repeat.count = gl->current_count; in gl_save_for_undo()
7820 gl->vi.repeat.saved = 1; in gl_save_for_undo()
7876 gl->vi.repeat.action.fn = gl_vi_undo; in KT_KEY_FN()
7877 gl->vi.repeat.action.data = NULL; in KT_KEY_FN()
7878 gl->vi.repeat.count = 1; in KT_KEY_FN()
8014 gl->vi.repeat.input_curpos = gl->insert_curpos; in gl_vi_command_mode()
8015 gl->vi.repeat.command_curpos = gl->buff_curpos; in gl_vi_command_mode()
8041 if(!gl->vi.repeat.action.fn) in KT_KEY_FN()
8047 gl->vi.repeat.active = 1; in KT_KEY_FN()
8051 status = gl->vi.repeat.action.fn(gl, gl->vi.repeat.count, in KT_KEY_FN()
8052 gl->vi.repeat.action.data); in KT_KEY_FN()
8056 gl->vi.repeat.active = 0; in KT_KEY_FN()
8070 if(gl->vi.repeat.input_curpos >= 0 && in KT_KEY_FN()
8071 gl->vi.repeat.input_curpos <= gl->vi.repeat.command_curpos && in KT_KEY_FN()
8072 gl->vi.repeat.command_curpos <= gl->vi.undo.ntotal) { in KT_KEY_FN()
8079 for(i=gl->vi.repeat.input_curpos; i<gl->vi.repeat.command_curpos; i++) { in KT_KEY_FN()
8283 gl->vi.repeat.saved = 0; in gl_interpret_char()
10475 gl->vi.repeat.action.fn = 0;
10476 gl->vi.repeat.action.data = 0;