annotate runtime/macros/matchit.vim @ 10863:9130644aec5c v8.0.0321

patch 8.0.0321: errors when trying to use scripts in tiny version commit https://github.com/vim/vim/commit/8cc2a9c062fa38e133a62778518f769a423a2526 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 9 20:22:30 2017 +0100 patch 8.0.0321: errors when trying to use scripts in tiny version 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)
author Christian Brabandt <cb@256bit.org>
date Thu, 09 Feb 2017 20:30:05 +0100
parents b1ca6aa215b7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8728
b1ca6aa215b7 commit https://github.com/vim/vim/commit/da64ab322ae35e473a24b211d22d05b1439aa05c
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 " Load the matchit package.
b1ca6aa215b7 commit https://github.com/vim/vim/commit/da64ab322ae35e473a24b211d22d05b1439aa05c
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2 " For those users who were loading the matchit plugin from here.
10863
9130644aec5c patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents: 8728
diff changeset
3 if 1
9130644aec5c patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents: 8728
diff changeset
4 packadd matchit
9130644aec5c patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents: 8728
diff changeset
5 endif