From dfb676fe0d64c708c0c334b09c947db1bae4736d Mon Sep 17 00:00:00 2001 From: Matthew Malcomson Date: Mon, 13 Jan 2020 01:09:39 +0000 Subject: edit.c: Ensure undo sync when emulating x #11706 After PR #8226 an unmapped META key in insert mode behaves like ESC- (:help i_META). The behaviour does not fully match, since if - is pressed manually then since it were pressed manually `gotchars` would be called on the second after insert-mode had already been left. This would mean that `may_sync_undo` (called from `gotchars`) would call `u_sync(FALSE)` on the second key (since we would be in normal mode). This overall means that behaves differently with respect to undo than [something] when the [something] makes a change. As an example, under `nvim -u NONE`: ihellou leaves the buffer empty, while ihello.u leaves the buffer with one instance of `hello`. - Fix by calling u_sync() manually in the new clause under `normalchar:` in `insert_handle_key`. - Update test in tui_spec.lua that accidentally relied on the old behaviour. --- src/nvim/edit.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/nvim/edit.c b/src/nvim/edit.c index cb5c7023d7..d59924cd08 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -1234,6 +1234,7 @@ normalchar: // Unmapped ALT/META chord behaves like ESC+c. #8213 stuffcharReadbuff(ESC); stuffcharReadbuff(s->c); + u_sync(false); break; } -- cgit