Add test example for #7

This commit is contained in:
Andy K. Massimino
2017-11-15 12:07:49 -05:00
parent fbaed30dbc
commit f472a56042
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
augroup nomatchparen
autocmd!
autocmd VimEnter * NoMatchParen
augroup END

9
test/issues/7/hotfix.vim Normal file
View File

@@ -0,0 +1,9 @@
function! AugroupHotfix()
call matchup#util#patch_match_words(
\ '\<aug\%[roup]\s\+\%(END\>\)\@!\S:',
\ '\<aug\%[roup]\s\+\%(END\>\)\@!\S\+:')
endfunction
let g:matchup_hotfix_vim = 'AugroupHotfix'