summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2006-09-09 11:37:51 +0000
committervimboss <devnull@localhost>2006-09-09 11:37:51 +0000
commitd0de252599e5cf7ba9cb0a67dfe136748440e57b (patch)
tree6394b81f5fa3ef84dcac8b44295f1876191d2fe6
parent9856ca3c3e992d1da90c74a2bb21efa4fc62b536 (diff)
downloadvim-d0de252599e5cf7ba9cb0a67dfe136748440e57b.tar.gz
updated for version 7.0-093v7.0.093v7-0-093
-rw-r--r--runtime/plugin/matchparen.vim4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim
index 96915474..c4792b82 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: 2006 Jun 26
+" Last Change: 2006 Sep 09
" Exit quickly when:
" - this plugin was already loaded (or disabled)
@@ -44,7 +44,7 @@ function! s:Highlight_Matching_Pair()
let before = 0
let c = getline(c_lnum)[c_col - 1]
- let plist = split(&matchpairs, ':\|,')
+ let plist = split(&matchpairs, '.\zs[:,]')
let i = index(plist, c)
if i < 0
" not found, in Insert mode try character before the cursor
diff --git a/src/version.c b/src/version.c
index 673db10b..0847080b 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 93,
+/**/
92,
/**/
91,