diff options
| author | Shougo <Shougo.Matsu@gmail.com> | 2016-08-17 22:24:20 +0900 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2016-08-17 09:24:20 -0400 |
| commit | dfb6a5133b92ffb38bfb7201e91f3de328652558 (patch) | |
| tree | 088602e29afaec7aa3536120a2278b258ae97d3d /src/nvim/version.c | |
| parent | 6b48d25cbf053720a128bfc124d2ee211addcf5c (diff) | |
| download | rneovim-dfb6a5133b92ffb38bfb7201e91f3de328652558.tar.gz rneovim-dfb6a5133b92ffb38bfb7201e91f3de328652558.tar.bz2 rneovim-dfb6a5133b92ffb38bfb7201e91f3de328652558.zip | |
vim-patch:7.4.2112 (#5175)
Problem: getcompletion(.., 'dir') returns a match with trailing "*" when
there are no matches. (Chdiza)
Solution: Return an empty list when there are no matches. Add a trailing
slash to directories. (Yegappan Lakshmanan) Add tests for no
matches. (closes vim/vim#947)
https://github.com/vim/vim/commit/b56195ed00a9a79aa6217cddbeedbc8cc7a5b6d8
Diffstat (limited to 'src/nvim/version.c')
| -rw-r--r-- | src/nvim/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index aa337f9fae..1cb8d128aa 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -163,7 +163,7 @@ static int included_patches[] = { // 2115, // 2114, // 2113, - // 2112, + 2112, // 2111, // 2110, // 2109, |