Files
vim-matchup/autoload/matchup/unmatchit.vim
Andy K. Massimino 32e79b18e6 Fix various lints
2021-04-19 22:31:24 -04: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