Lines Matching defs:line
292 * Vi enter insert mode at the beginning of line
358 * Vi substitute entire line
376 * Vi change to end of line
434 * Vi enter insert mode at end of line
523 /* switch line buffer and undo buffer */
563 * Vi move to the beginning of line
601 * Vi list choices for completion or indicate end of file if empty line
638 * Vi cut from beginning of line to cursor
846 * Vi undo all changes to line
874 * Vi yank to end of line
952 * Vi go to specified history file line.
997 * Vi edit history line with vi
1011 Char *line = NULL;
1026 line = el_malloc(len * sizeof(*line) + 1);
1027 if (line == NULL)
1029 Strncpy(line, el->el_line.buffer, len);
1030 line[len] = '\0';
1031 ct_wcstombs(cp, line, TMP_BUFSIZ - 1);
1062 el_free(line);
1071 el_free(line);
1079 * Vi append word from previous input line
1082 * '_' in vi means 'entire current line', so 'cc' is a synonym for 'c_'