Home
last modified time | relevance | path

Searched refs:vpeekc (Results 1 – 9 of 9) sorted by relevance

/vim-8.2.3635/src/proto/
H A Dgetchar.pro43 int vpeekc(void);
/vim-8.2.3635/src/
H A Dgetchar.c1510 (void)vpeekc(); // check for end of file in openscript()
1958 vpeekc(void) in vpeekc() function
1977 c = vpeekc(); in vpeekc_nomap()
1994 c = vpeekc(); in vpeekc_any()
2016 retval = vpeekc(); in char_avail()
H A Dex_getln.c437 if (did_do_incsearch && vpeekc() == NUL) in may_do_incsearch_highlighting()
522 (void)vpeekc(); // remove <C-C> from input stream in may_do_incsearch_highlighting()
954 (void)vpeekc(); // remove <C-C> from input stream in cmdline_wildchar_complete()
2403 if (xpc.xp_context == EXPAND_NOTHING && (KeyTyped || vpeekc() == NUL)) in getcmdline_int()
2418 if (vpeekc() == NUL) in getcmdline_int()
2770 if (exec_from_reg && vpeekc() == ':') in getexline()
H A Dedit.c2190 && vpeekc() != NUL in insertchar()
2217 while ( (c = vpeekc()) != NUL in insertchar()
4388 if (end == NULL && vpeekc() == NUL) in bracketed_paste()
H A Dnormal.c996 while ((c = vpeekc()) <= 0 && towait > 0L) in normal_cmd()
1021 while (enc_utf8 && lang && (c = vpeekc()) > 0 in normal_cmd()
1022 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1)) in normal_cmd()
H A Dmouse.c264 if (vpeekc() != NUL) in do_mouse()
H A Dex_docmd.c7576 (void)vpeekc(); in do_sleep()
8571 || (use_vpeekc && (c = vpeekc()) != NUL && c != Ctrl_C)) in exec_normal()
H A Dterm.c6455 c = vpeekc(); in check_for_codes_from_term()
/vim-8.2.3635/runtime/doc/
H A Dversion8.txt25554 Solution: Check for InsertCharPre before calling vpeekc(). (Christian
26930 Solution: call vpeekc() to drop the CTRL-C from the input stream.