Home
last modified time | relevance | path

Searched refs:vim_fgets (Results 1 – 14 of 14) sorted by relevance

/vim-8.2.3635/src/proto/
H A Dfileio.pro27 int vim_fgets(char_u *buf, int size, FILE *fp);
/vim-8.2.3635/src/
H A Dviminfo.c268 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd); in viminfo_readstring()
271 (void)vim_fgets(retval, (int)len, virp->vir_fd); in viminfo_readstring()
319 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd); in viminfo_readline()
2284 eof = vim_fgets(line, LSIZE, virp->vir_fd); in copy_viminfo_marks()
2544 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd); in read_viminfo_filemark()
H A Dhelp.c860 vim_fgets(IObuff, IOSIZE, fd); in fix_help_buffer()
1038 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) in helptags_one()
H A Dtag.c1961 eof = vim_fgets(lbuf, lbuf_size, fp); in find_tags()
1973 eof = vim_fgets(lbuf, lbuf_size, fp); in find_tags()
1979 eof = vim_fgets(lbuf, lbuf_size, fp); in find_tags()
2005 eof = vim_fgets(lbuf, lbuf_size, fp); in find_tags()
2070 if (!vim_fgets(ebuf, LSIZE, fp)) in find_tags()
H A Ddiff.c1035 if (vim_fgets(linebuf, LBUFLEN, fd)) in check_external_diff()
1654 if (vim_fgets(linebuf, LBUFLEN, fd)) in diff_read()
1676 && (vim_fgets(linebuf, LBUFLEN, fd) == 0) in diff_read()
1678 && (vim_fgets(linebuf, LBUFLEN, fd) == 0) in diff_read()
H A Dex_cmds2.c835 if (vim_fgets(IObuff, IOSIZE, file)) in requires_py_version()
H A Dspellfile.c2264 while (!vim_fgets(rline, MAXLINELEN, fd) && !got_int) in spell_read_aff()
3538 if (vim_fgets(line, MAXLINELEN, fd) || !vim_isdigit(*skipwhite(line))) in spell_read_dic()
3546 while (!vim_fgets(line, MAXLINELEN, fd) && !got_int) in spell_read_dic()
4117 while (!vim_fgets(rline, MAXLINELEN, fd) && !got_int) in spell_read_wordfile()
6258 while (!vim_fgets(line, MAXWLEN * 2, fd)) in spell_add_word()
H A Dprofiler.c870 if (vim_fgets(IObuff, IOSIZE, sfd)) in script_dump_profile()
H A Dsearch.c3753 else if (vim_fgets(line = file_line, in find_pattern_in_path()
3937 && vim_fgets(line = file_line, LSIZE, files[depth].fp)) in find_pattern_in_path()
4056 if (vim_fgets(line, LSIZE, fp)) // end of file in show_pat_in_path()
H A Dinsexpand.c1332 && !vim_fgets(buf, LSIZE, fp)) in ins_compl_files()
H A Dfileio.c3673 vim_fgets(char_u *buf, int size, FILE *fp) in vim_fgets() function
H A Dspellsuggest.c943 while (!vim_fgets(line, MAXWLEN * 2, fd) && !got_int) in spell_suggest_file()
H A Dquickfix.c8047 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) in hgr_search_file()
/vim-8.2.3635/runtime/doc/
H A Dversion5.txt6178 Also change vim_fgets() to not use IObuff any longer.