diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-09-27 22:23:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-09-27 22:23:55 +0200 |
commit | 24a98a0eb77245adc50facad8b735b20bfd31a7e (patch) | |
tree | ffdfef4e7528ec317d59463e5ff83d07e466c0d7 /runtime/evim.vim | |
parent | 9cf39cc57f63f57b4a335cd25371eb456824f049 (diff) | |
download | vim-git-24a98a0eb77245adc50facad8b735b20bfd31a7e.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/evim.vim')
-rw-r--r-- | runtime/evim.vim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/evim.vim b/runtime/evim.vim index f80b3c03b..7bfebcd16 100644 --- a/runtime/evim.vim +++ b/runtime/evim.vim @@ -1,6 +1,6 @@ " Vim script for Evim key bindings " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2016 Jul 24 +" Last Change: 2017 Sep 20 " Don't use Vi-compatible mode. set nocompatible @@ -67,8 +67,10 @@ endif " has("autocmd") " " The matchit plugin makes the % command work better, but it is not backwards " compatible. +" The ! means the package won't be loaded right away but when plugins are +" loaded during initialization. if has('syntax') && has('eval') - packadd matchit + packadd! matchit endif " vim: set sw=2 : |