diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-08-08 16:07:03 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-08-08 16:07:03 +0000 |
commit | 8ff38007cb49c85f10ce6e6394074e41dbe4c97d (patch) | |
tree | 9319968e1d7e145d158585e92ca49553a4549f9f | |
parent | 4666d50709ae71813a8dfd267fe4948eb3247133 (diff) | |
download | vim-git-8ff38007cb49c85f10ce6e6394074e41dbe4c97d.tar.gz |
updated for version 7.0-046v7.0.046
-rw-r--r-- | runtime/plugin/matchparen.vim | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim index 81f00c146..969154743 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 May 11 +" Last Change: 2006 Jun 26 " Exit quickly when: " - this plugin was already loaded (or disabled) @@ -96,7 +96,7 @@ function! s:Highlight_Matching_Pair() " When not in a string or comment ignore matches inside them. let s_skip ='synIDattr(synID(line("."), col("."), 0), "name") ' . - \ '=~? "string\\|comment"' + \ '=~? "string\\|character\\|singlequote\\|comment"' execute 'if' s_skip '| let s_skip = 0 | endif' let [m_lnum, m_col] = searchpairpos(c, '', c2, s_flags, s_skip, stopline) diff --git a/src/version.c b/src/version.c index 57fc278d2..785af8d51 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 */ /**/ + 46, +/**/ 45, /**/ 44, |