diff --git a/src/nvim/version.c b/src/nvim/version.c index 71ac000279..1d98afaaa1 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -510,7 +510,7 @@ static int included_patches[] = { 617, // 616, 615, - // 614, + 614, // 613, 612, // 611 NA diff --git a/test/functional/legacy/mapping_spec.lua b/test/functional/legacy/mapping_spec.lua index 3f86ec60de..a0d19926cb 100644 --- a/test/functional/legacy/mapping_spec.lua +++ b/test/functional/legacy/mapping_spec.lua @@ -84,6 +84,23 @@ describe('mapping', function() +]]) end) + it('feedkeys', function() + insert([[ + a b c d + a b c d + ]]) + + -- Vim's issue #212 (feedkeys insert mapping at current position) + execute('nnoremap . :call feedkeys(".", "in")') + feed('/^a b') + feed('0qqdw.ifooqj0@q') + execute('unmap .') + expect([[ + fooc d + fooc d + ]]) + end) + it('i_CTRL-G_U', function() -- U works only within a single line execute('imapclear')