mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.0-093
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
" Vim plugin for showing matching parens
|
" Vim plugin for showing matching parens
|
||||||
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
||||||
" Last Change: 2006 Jun 26
|
" Last Change: 2006 Sep 09
|
||||||
|
|
||||||
" Exit quickly when:
|
" Exit quickly when:
|
||||||
" - this plugin was already loaded (or disabled)
|
" - this plugin was already loaded (or disabled)
|
||||||
@@ -44,7 +44,7 @@ function! s:Highlight_Matching_Pair()
|
|||||||
let before = 0
|
let before = 0
|
||||||
|
|
||||||
let c = getline(c_lnum)[c_col - 1]
|
let c = getline(c_lnum)[c_col - 1]
|
||||||
let plist = split(&matchpairs, ':\|,')
|
let plist = split(&matchpairs, '.\zs[:,]')
|
||||||
let i = index(plist, c)
|
let i = index(plist, c)
|
||||||
if i < 0
|
if i < 0
|
||||||
" not found, in Insert mode try character before the cursor
|
" not found, in Insert mode try character before the cursor
|
||||||
|
@@ -666,6 +666,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
93,
|
||||||
/**/
|
/**/
|
||||||
92,
|
92,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user