diff options
author | Shota <shotat@users.noreply.github.com> | 2016-06-05 17:00:58 +0900 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-06-05 04:00:58 -0400 |
commit | 78c6f5c06d0fc57b9456c3cf11a3c70743993c4d (patch) | |
tree | cb30f8f6422a88ee4673c4fba72988fc610e5e7e /src/nvim/version.c | |
parent | 6ed9d47a6e0a28d163e1cf78e521e1282b725a87 (diff) | |
download | rneovim-78c6f5c06d0fc57b9456c3cf11a3c70743993c4d.tar.gz rneovim-78c6f5c06d0fc57b9456c3cf11a3c70743993c4d.tar.bz2 rneovim-78c6f5c06d0fc57b9456c3cf11a3c70743993c4d.zip |
vim-patch:7.4.1056 (#4870)
Problem: Don't know why finding spell suggestions is slow.
Solution: Add some code to gather profiling information.
https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r-- | src/nvim/version.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index 0f51f4af6e..07ae2cb2d4 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -637,7 +637,7 @@ static int included_patches[] = { 1059, // 1058, 1057, - // 1056, + 1056, 1055, 1054, 1053, @@ -2020,3 +2020,4 @@ void ex_intro(exarg_T *eap) intro_message(TRUE); wait_return(TRUE); } + |