1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 12:40:05 +08:00
SpaceVim/bundle/vim-matchup/autoload/matchup/unmatchit.vim

27 lines
429 B
VimL
Raw Normal View History

2020-06-13 14:06:35 +08:00
" vim match-up - even better matching
"
" Maintainer: Andy Massimino
" Email: a@normed.space
"
" this file is loaded only from plugin/matchup.vim
if !exists('g:loaded_matchup')
\ || !exists('g:loaded_matchit')
\ || !exists(":MatchDebug")
finish
endif
unlet g:loaded_matchit
delcommand MatchDebug
silent! unmap %
silent! unmap [%
silent! unmap ]%
silent! unmap a%
silent! unmap g%
" vim: fdm=marker sw=2