From 23f591dba078fee16ab6e4debfcd051e799ca4f8 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Sat, 23 Jul 2016 11:33:38 +0900 Subject: [RFC] vim-patch:7.4.2011, vim-patch:7.4.2012, vim-patch:7.4.2066 #5106 vim-patch:7.4.2011 Problem: It is not easy to get a list of command arguments. Solution: Add getcompletion(). (Yegappan Lakshmanan) https://github.com/vim/vim/commit/aa4d73235bf4deee167aa5314b89ae3d3db334b7 vim-patch:7.4.2012 Problem: Test for getcompletion() does not pass on all systems. Solution: Only test what is supported. https://github.com/vim/vim/commit/0d3e24be5686c0710aa3c6671e4c626d6cb21a5f vim-patch:7.4.2066 Problem: getcompletion() not well tested. Solution: Add more testing. https://github.com/vim/vim/commit/c1fb763184c8ae82300357867fa2070aa94366e9 --- src/nvim/version.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index bd6b1af901..0ec41787ed 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -209,7 +209,7 @@ static int included_patches[] = { // 2069, // 2068, // 2067, - // 2066, + 2066, // 2065, // 2064, // 2063 NA @@ -263,8 +263,8 @@ static int included_patches[] = { // 2015, 2014, 2013, - // 2012, - // 2011, + 2012, + 2011, // 2010, // 2009, // 2008, -- cgit