Files
vim-matchup/autoload/matchup/unmatchit.vim
Andy K. Massimino 0caff20a36 Tweak unmatchit
2021-03-03 17:18:30 -05:00

29 lines
472 B
VimL

" 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
function! matchup#unmatchit#()
endfunction
unlet g:loaded_matchit
delcommand MatchDebug
silent! unmap %
silent! unmap [%
silent! unmap ]%
silent! unmap a%
silent! unmap g%
" vim: fdm=marker sw=2