diff runtime/vimrc_example.vim @ 12559:34c8ec888122

Update runtime files commit https://github.com/vim/vim/commit/24a98a0eb77245adc50facad8b735b20bfd31a7e Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 27 22:23:55 2017 +0200 Update runtime files
author Christian Brabandt <cb@256bit.org>
date Wed, 27 Sep 2017 22:30:06 +0200
parents 284b4eb307fc
children fe57e4f0eac1
line wrap: on
line diff
--- a/runtime/vimrc_example.vim
+++ b/runtime/vimrc_example.vim
@@ -1,7 +1,7 @@
 " An example for a vimrc file.
 "
 " Maintainer:	Bram Moolenaar <Bram@vim.org>
-" Last change:	2016 Jul 28
+" Last change:	2017 Sep 20
 "
 " To use it, copy it to
 "     for Unix and OS/2:  ~/.vimrc
@@ -53,6 +53,8 @@ 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