diff options
-rw-r--r-- | src/nvim/version.c | 6 | ||||
-rw-r--r-- | test/functional/legacy/wordcount_spec.lua | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index 50e3c324aa..b55d31ea76 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -633,9 +633,9 @@ static int included_patches[] = { 1052, // 1051, // 1050, - // 1049, - // 1048, - // 1047, + 1049, + 1048, + 1047, // 1046, // 1045 NA // 1044 NA diff --git a/test/functional/legacy/wordcount_spec.lua b/test/functional/legacy/wordcount_spec.lua index 63787a59d3..ba7be8f21b 100644 --- a/test/functional/legacy/wordcount_spec.lua +++ b/test/functional/legacy/wordcount_spec.lua @@ -9,6 +9,10 @@ describe('wordcount', function() before_each(clear) it('is working', function() + execute('set selection=inclusive') + execute('fileformat=unix') + execute('fileformats=unix') + insert([=[ RESULT test:]=]) |