mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:40:06 +08:00
17 lines
304 B
VimL
17 lines
304 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
|
|
|
|
if matchup#util#check_match_words('bb2bcbee')
|
|
call matchup#util#append_match_words('/\*:\*/')
|
|
endif
|
|
|
|
" vim: fdm=marker sw=2
|
|
|