From bf3d9457981c372bb33155045b070facffd01f65 Mon Sep 17 00:00:00 2001 From: Felipe Morales Date: Fri, 22 Aug 2014 20:45:26 -0400 Subject: vim-patch: 7.4.330 Problem: Using a regexp pattern to highlight a specific position can be slow. Solution: Add matchaddpos() to highlight specific positions efficiently. (Alexey Radkov.) https://code.google.com/p/vim/source/detail?r=f9fa2e506b9f07549cd91074835c5c553db7b3a7 --- src/nvim/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index 12ee8c1e2c..b2c795081c 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -265,7 +265,7 @@ static int included_patches[] = { //333 NA //332 NA 331, - //330, + 330, 329, 328, 327, -- cgit From a8124602f00c5142493526b43cd21b89dcbfef3f Mon Sep 17 00:00:00 2001 From: Felipe Morales Date: Sat, 23 Aug 2014 02:09:04 -0400 Subject: vim-patch: 7.4.334 Problem: Unitialized variables, causing some problems. Solution: Initialize the variables. (Dominique Pelle) https://code.google.com/p/vim/source/detail?r=03d260a8ea0c0c67f424c387dbe2af5754e5e589 --- src/nvim/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index b2c795081c..61154c6de7 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -261,7 +261,7 @@ static int included_patches[] = { //337, //336, 335, - //334, + 334, //333 NA //332 NA 331, -- cgit From 9d7e3336cf6378c409138009350775e254d3a823 Mon Sep 17 00:00:00 2001 From: Felipe Morales Date: Fri, 22 Aug 2014 20:59:46 -0400 Subject: vim-patch: 7.4.362 Problem: When matchaddpos() uses a length smaller than the number of bytes in the (last) character the highlight continues until the end of the line. Solution: Change condition from equal to larger-or-equal. https://code.google.com/p/vim/source/detail?r=7fa2bed947fde3514a700c96861a537d816d6fd4 --- src/nvim/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index 61154c6de7..fd38b6e5e0 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -233,7 +233,7 @@ static int included_patches[] = { //365, //364, //363, - //362, + 362, //361, //360, //359, -- cgit From 15d86890d407a6750560088f40104a81fb73b19c Mon Sep 17 00:00:00 2001 From: Felipe Morales Date: Mon, 1 Sep 2014 15:42:15 -0400 Subject: vim-patch: 7.4.343 Problem: matchdelete() does not always update the right lines. Solution: Fix off-by-one error. (Ozaki Kiichi) https://code.google.com/p/vim/source/detail?r=539ce56d8f35fe2deb5c4f57335e1adf97ae4e74 --- src/nvim/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index fd38b6e5e0..fc8f36621a 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -252,7 +252,7 @@ static int included_patches[] = { 346, //345, //344, - //343, + 343, //342 NA //341, //340 NA -- cgit From d860ba45e25231ae54c6fd12ecd00dc936780184 Mon Sep 17 00:00:00 2001 From: Felipe Morales Date: Mon, 1 Sep 2014 15:34:12 -0400 Subject: vim-patch: 7.4.344 Problem: Unnecessary initializations and other things related to matchaddpos(). Solution: Code cleanup. (Alexey Radkov) https://code.google.com/p/vim/source/detail?r=ce284c205558d103326a4c3f22f181774690b3eb --- src/nvim/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index fc8f36621a..8132d5dfcc 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -251,7 +251,7 @@ static int included_patches[] = { //347, 346, //345, - //344, + 344, 343, //342 NA //341, -- cgit