forked from aniani/vim
patch 8.1.0115: the matchparen plugin may throw an error
Problem: The matchparen plugin may throw an error. Solution: Change the skip argument from zero to "0".
This commit is contained in:
@@ -114,7 +114,7 @@ function! s:Highlight_Matching_Pair()
|
|||||||
" within those syntax types (i.e., not skip). Otherwise, the cursor is
|
" within those syntax types (i.e., not skip). Otherwise, the cursor is
|
||||||
" outside of the syntax types and s_skip should keep its value so we skip any
|
" outside of the syntax types and s_skip should keep its value so we skip any
|
||||||
" matching pair inside the syntax types.
|
" matching pair inside the syntax types.
|
||||||
execute 'if' s_skip '| let s_skip = 0 | endif'
|
execute 'if' s_skip '| let s_skip = "0" | endif'
|
||||||
|
|
||||||
" Limit the search to lines visible in the window.
|
" Limit the search to lines visible in the window.
|
||||||
let stoplinebottom = line('w$')
|
let stoplinebottom = line('w$')
|
||||||
|
@@ -789,6 +789,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 */
|
||||||
|
/**/
|
||||||
|
115,
|
||||||
/**/
|
/**/
|
||||||
114,
|
114,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user