mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
API: rename nvim_source => nvim_exec
- Eliminate nvim_source_output(): add boolean `output` param to nvim_exec() instead.
This commit is contained in:
@@ -421,13 +421,12 @@ int do_cmdline(char_u *cmdline, LineGetter fgetline,
|
||||
// If force_abort is set, we cancel everything.
|
||||
did_emsg = false;
|
||||
|
||||
/*
|
||||
* KeyTyped is only set when calling vgetc(). Reset it here when not
|
||||
* calling vgetc() (sourced command lines).
|
||||
*/
|
||||
// KeyTyped is only set when calling vgetc(). Reset it here when not
|
||||
// calling vgetc() (sourced command lines).
|
||||
if (!(flags & DOCMD_KEYTYPED)
|
||||
&& !getline_equal(fgetline, cookie, getexline))
|
||||
&& !getline_equal(fgetline, cookie, getexline)) {
|
||||
KeyTyped = false;
|
||||
}
|
||||
|
||||
/*
|
||||
* Continue executing command lines:
|
||||
|
Reference in New Issue
Block a user