From e453825aa5c702b22faa7acb0b1226e60a539d59 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Tue, 7 Jun 2016 10:39:58 -0400 Subject: vim-patch:38a5563 Update runtime files. https://github.com/vim/vim/commit/38a55639d603823efcf2d2fdf542dbffdeb60b75 Ignore changes to * doc/channel.txt, doc/eval.txt, doc/various.txt: Channel related docs * doc/tags: Generated at build time * doc/todo.txt, doc/vi_diff.txt: Not relevant to neovim --- runtime/plugin/matchparen.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'runtime/plugin/matchparen.vim') diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim index 873302efee..5929cf371a 100644 --- a/runtime/plugin/matchparen.vim +++ b/runtime/plugin/matchparen.vim @@ -1,6 +1,6 @@ " Vim plugin for showing matching parens " Maintainer: Bram Moolenaar -" Last Change: 2015 Dec 31 +" Last Change: 2016 Feb 09 " Exit quickly when: " - this plugin was already loaded (or disabled) @@ -97,6 +97,7 @@ function! s:Highlight_Matching_Pair() if has_getcurpos " getcurpos() is more efficient but doesn't exist before 7.4.313. let save_cursor = getcurpos() +let g:saved_cursor = save_cursor else let save_cursor = winsaveview() endif -- cgit From 48aa28a3eb074ccd903a6eb64869764be5c95b30 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Tue, 7 Jun 2016 12:06:20 -0400 Subject: vim-patch:e0fa374 Updated runtime files. https://github.com/vim/vim/commit/e0fa3742ead676a3074a10edadbc955e1a89153d Ignore changes to * doc/channel.txt: Channel related docs * doc/netbeans.txt, doc/os_dos.txt, doc/todo.txt: Not relevant to Neovim * doc/tags: Generated at build time --- runtime/plugin/matchparen.vim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'runtime/plugin/matchparen.vim') diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim index 5929cf371a..5db1f64c78 100644 --- a/runtime/plugin/matchparen.vim +++ b/runtime/plugin/matchparen.vim @@ -1,6 +1,6 @@ " Vim plugin for showing matching parens " Maintainer: Bram Moolenaar -" Last Change: 2016 Feb 09 +" Last Change: 2016 Feb 16 " Exit quickly when: " - this plugin was already loaded (or disabled) @@ -97,7 +97,6 @@ function! s:Highlight_Matching_Pair() if has_getcurpos " getcurpos() is more efficient but doesn't exist before 7.4.313. let save_cursor = getcurpos() -let g:saved_cursor = save_cursor else let save_cursor = winsaveview() endif -- cgit