mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:30:04 +08:00
28 lines
580 B
VimL
28 lines
580 B
VimL
" vim match-up - even better matching
|
|
"
|
|
" Maintainer: Andy Massimino
|
|
" Email: a@normed.space
|
|
"
|
|
|
|
if !exists('g:loaded_matchup') || !exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
let b:match_skip = 's:comment\|string\|vimSynReg'
|
|
\ . '\|vimSet\|vimFuncName\|vimNotPatSep'
|
|
\ . '\|vimVar\|vimFuncVar\|vimFBVar\|vimOperParen'
|
|
\ . '\|vimUserFunc'
|
|
|
|
call matchup#util#patch_match_words(
|
|
\ '\<aug\%[roup]\s\+\%(END\>\)\@!\S:',
|
|
\ '\<aug\%[roup]\ze\s\+\%(END\>\)\@!\S:'
|
|
\)
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
" vim: fdm=marker sw=2
|
|
|