Lines Matching refs:filename

946 static int _gl_read_config_file(GetLine *gl, const char *filename, KtBinder who);
1174 static int _gl_save_history(GetLine *gl, const char *filename,
1176 static int _gl_load_history(GetLine *gl, const char *filename,
1389 {"expand-filename", gl_expand_filename},
1507 {"^X*", "expand-filename"},
1557 {"^X*", "expand-filename"},
1563 {"M-*", "expand-filename"},
5467 * This is the tab completion function that completes the filename that
5470 * and its callback data, or NULL to use the builtin filename completer.
5548 * Make room to insert the filename extension.
5552 * Insert the filename extension.
5595 * This is the function that expands the filename that precedes the
5603 FileExpansion *result; /* The results of the filename expansion */
5617 * Locate the start of the filename that precedes the cursor position.
5662 length++; /* Count the space that follows each filename */
5677 * filename?
5704 * the original filename.
5720 * filename that precedes the cursor position. It expands ~user/
5727 FileExpansion *result; /* The results of the filename expansion */
5730 * Locate the start of the filename that precedes the cursor position.
6241 * filename const char * The name of the file to read configuration
6251 static int _gl_read_config_file(GetLine *gl, const char *filename, KtBinder who)
6264 FileExpansion *expansion; /* The expansion of the filename */
6271 if(!gl || !filename) {
6278 * Expand the filename.
6280 expansion = ef_expand_file(gl->ef, filename, -1);
6282 gl_print_info(gl, "Unable to expand ", filename, " (",
6299 waserr = _gl_parse_config_line(gl, fp, glc_file_getc, filename, who,
6580 FileExpansion *result; /* The results of the filename expansion */
6583 * Locate the start of the filename that precedes the cursor position.
8524 * filename const char * The name of the new file to write to.
8537 int gl_save_history(GetLine *gl, const char *filename, const char *comment,
8545 if(!gl || !filename || !comment) {
8559 status = _gl_save_history(gl, filename, comment, max_lines);
8572 static int _gl_save_history(GetLine *gl, const char *filename,
8585 FileExpansion *expansion; /* The expansion of the filename */
8587 * Expand the filename.
8589 expansion = ef_expand_file(gl->ef, filename, -1);
8591 gl_print_info(gl, "Unable to expand ", filename, " (",
8611 * filename const char * The name of the new file to write to.
8619 int gl_load_history(GetLine *gl, const char *filename, const char *comment)
8626 if(!gl || !filename || !comment) {
8640 status = _gl_load_history(gl, filename, comment);
8653 static int _gl_load_history(GetLine *gl, const char *filename,
8666 FileExpansion *expansion; /* The expansion of the filename */
8668 * Expand the filename.
8670 expansion = ef_expand_file(gl->ef, filename, -1);
8672 gl_print_info(gl, "Unable to expand ", filename, " (",