forked from aniani/vim
Problem: When using the tiny version trying to load the matchit plugin gives an error. On MS-Windows some default mappings fail. Solution: Add a check if the command used is available. (Christian Brabandt)
6 lines
124 B
VimL
6 lines
124 B
VimL
" Load the matchit package.
|
|
" For those users who were loading the matchit plugin from here.
|
|
if 1
|
|
packadd matchit
|
|
endif
|