mirror of
https://github.com/neovim/neovim.git
synced 2024-12-26 06:05:06 -07:00
input: Don't remove Ctrl+C from the input_buffer
This commit is contained in:
parent
b6c9883169
commit
b49460f930
@ -264,7 +264,7 @@ static void convert_input(void)
|
||||
|
||||
for (int i = (int)count - 1; i >= 0; i--) {
|
||||
if (inbuf[i] == 3) {
|
||||
consume_count = (size_t)(i + 1);
|
||||
consume_count = (size_t)i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user