Skip to content

Commit 8ff3800

Browse files
committed
updated for version 7.0-046
1 parent 4666d50 commit 8ff3800

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

runtime/plugin/matchparen.vim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
" Vim plugin for showing matching parens
22
" Maintainer: Bram Moolenaar <[email protected]>
3-
" Last Change: 2006 May 11
3+
" Last Change: 2006 Jun 26
44

55
" Exit quickly when:
66
" - this plugin was already loaded (or disabled)
@@ -96,7 +96,7 @@ function! s:Highlight_Matching_Pair()
9696

9797
" When not in a string or comment ignore matches inside them.
9898
let s_skip ='synIDattr(synID(line("."), col("."), 0), "name") ' .
99-
\ '=~? "string\\|comment"'
99+
\ '=~? "string\\|character\\|singlequote\\|comment"'
100100
execute 'if' s_skip '| let s_skip = 0 | endif'
101101

102102
let [m_lnum, m_col] = searchpairpos(c, '', c2, s_flags, s_skip, stopline)

src/version.c

+2
Original file line numberDiff line numberDiff line change
@@ -666,6 +666,8 @@ static char *(features[]) =
666666

667667
static int included_patches[] =
668668
{ /* Add new patch number below this line */
669+
/**/
670+
46,
669671
/**/
670672
45,
671673
/**/

0 commit comments

Comments
 (0)