diff options
| author | James McCoy <jamessan@jamessan.com> | 2016-06-07 12:06:20 -0400 |
|---|---|---|
| committer | James McCoy <jamessan@jamessan.com> | 2016-06-07 12:19:50 -0400 |
| commit | 48aa28a3eb074ccd903a6eb64869764be5c95b30 (patch) | |
| tree | 801ede4a6cc27a352a189882047c4185157fdc02 /runtime/plugin/matchparen.vim | |
| parent | e453825aa5c702b22faa7acb0b1226e60a539d59 (diff) | |
| download | rneovim-48aa28a3eb074ccd903a6eb64869764be5c95b30.tar.gz rneovim-48aa28a3eb074ccd903a6eb64869764be5c95b30.tar.bz2 rneovim-48aa28a3eb074ccd903a6eb64869764be5c95b30.zip | |
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
Diffstat (limited to 'runtime/plugin/matchparen.vim')
| -rw-r--r-- | runtime/plugin/matchparen.vim | 3 |
1 files changed, 1 insertions, 2 deletions
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 <Bram@vim.org> -" 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 |