diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-06-26 16:17:58 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-06-26 16:17:58 +0200 |
commit | 802a0d902fca423acb15f835d7b09183883d79a0 (patch) | |
tree | 30e049de8c6055a690cc03481629b4bf0381bfdd /runtime/vimrc_example.vim | |
parent | 049cba9e9760152b5695399a991dc61cea9ba143 (diff) | |
download | vim-git-802a0d902fca423acb15f835d7b09183883d79a0.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/vimrc_example.vim')
-rw-r--r-- | runtime/vimrc_example.vim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/vimrc_example.vim b/runtime/vimrc_example.vim index 6d5eac4f7..315801983 100644 --- 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 Apr 05 +" Last change: 2016 Jun 21 " " To use it, copy it to " for Unix and OS/2: ~/.vimrc @@ -111,4 +111,6 @@ endif " " The matchit plugin makes the % command work better, but it is not backwards " compatible. -packadd matchit +if has('syntax') && has('eval') + packadd matchit +endif |