aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-05-10 01:27:55 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-05-10 01:27:55 -0400
commitd06c4a239131a84637c5c7d247ef8b5e9c7275b3 (patch)
treeeb0720191ff714618165710f5588e64106ff90c7 /runtime
parent79b495195359386d5e19bb4649e1d8bfcb07b8f1 (diff)
parentfa65e95039202ca906b3430d25fb06568a6fa97a (diff)
downloadrneovim-d06c4a239131a84637c5c7d247ef8b5e9c7275b3.tar.gz
rneovim-d06c4a239131a84637c5c7d247ef8b5e9c7275b3.tar.bz2
rneovim-d06c4a239131a84637c5c7d247ef8b5e9c7275b3.zip
Merge pull request #4717 from jamessan/vim-7.4.1015
vim-patch:7.4.1015
Diffstat (limited to 'runtime')
-rw-r--r--runtime/plugin/matchparen.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim
index 2a5a16a57e..873302efee 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: 2014 Jul 19
+" Last Change: 2015 Dec 31
" Exit quickly when:
" - this plugin was already loaded (or disabled)
@@ -55,7 +55,7 @@ function! s:Highlight_Matching_Pair()
let before = 0
let text = getline(c_lnum)
- let matches = matchlist(text, '\(.\)\=\%'.c_col.'c\(.\)')
+ let matches = matchlist(text, '\(.\)\=\%'.c_col.'c\(.\=\)')
if empty(matches)
let [c_before, c] = ['', '']
else