aboutsummaryrefslogtreecommitdiff
path: root/runtime/plugin
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-06-07 10:39:58 -0400
committerJames McCoy <jamessan@jamessan.com>2016-06-07 12:02:56 -0400
commite453825aa5c702b22faa7acb0b1226e60a539d59 (patch)
treea207dae9ecb2cdbb17de8df3783f55c21f5e4ddd /runtime/plugin
parent8849c209cc0ae94d60a814b55397d80c2c16a185 (diff)
downloadrneovim-e453825aa5c702b22faa7acb0b1226e60a539d59.tar.gz
rneovim-e453825aa5c702b22faa7acb0b1226e60a539d59.tar.bz2
rneovim-e453825aa5c702b22faa7acb0b1226e60a539d59.zip
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
Diffstat (limited to 'runtime/plugin')
-rw-r--r--runtime/plugin/matchparen.vim3
1 files changed, 2 insertions, 1 deletions
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 <Bram@vim.org>
-" 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