mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 09:48:19 +00:00
globals: KeyTyped is bool
This commit is contained in:
@@ -400,7 +400,7 @@ int do_cmdline(char_u *cmdline, LineGetter fgetline,
|
||||
*/
|
||||
if (!(flags & DOCMD_KEYTYPED)
|
||||
&& !getline_equal(fgetline, cookie, getexline))
|
||||
KeyTyped = FALSE;
|
||||
KeyTyped = false;
|
||||
|
||||
/*
|
||||
* Continue executing command lines:
|
||||
@@ -973,7 +973,7 @@ static char_u *get_loop_line(int c, void *cookie, int indent)
|
||||
return line;
|
||||
}
|
||||
|
||||
KeyTyped = FALSE;
|
||||
KeyTyped = false;
|
||||
++cp->current_line;
|
||||
wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
|
||||
sourcing_lnum = wp->lnum;
|
||||
|
Reference in New Issue
Block a user