mirror of
https://github.com/vim/vim
synced 2025-03-15 14:27:53 +01:00
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)
5 lines
124 B
VimL
5 lines
124 B
VimL
" Load the matchit package.
|
|
" For those users who were loading the matchit plugin from here.
|
|
if 1
|
|
packadd matchit
|
|
endif
|