diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-01-23 14:24:41 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-01-23 14:24:41 +0100 |
commit | 8d04317104f7ab39785aa9451c6810ef22fcec76 (patch) | |
tree | 7bff2ef9af3dae8ef12177c43eb397e596fadc9e /runtime/plugin/getscriptPlugin.vim | |
parent | ac8400d48354a62b7b761cf6897641876d2c476d (diff) | |
download | vim-git-8d04317104f7ab39785aa9451c6810ef22fcec76.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/plugin/getscriptPlugin.vim')
-rw-r--r-- | runtime/plugin/getscriptPlugin.vim | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/runtime/plugin/getscriptPlugin.vim b/runtime/plugin/getscriptPlugin.vim index 45c858aac..fb0fbeab7 100644 --- a/runtime/plugin/getscriptPlugin.vim +++ b/runtime/plugin/getscriptPlugin.vim @@ -1,7 +1,7 @@ " --------------------------------------------------------------------- " getscriptPlugin.vim " Author: Charles E. Campbell -" Date: Jan 07, 2008 +" Date: Nov 29, 2013 " Installing: :help glvs-install " Usage: :help glvs " @@ -13,13 +13,16 @@ " Initialization: {{{1 " if you're sourcing this file, surely you can't be " expecting vim to be in its vi-compatible mode -if &cp || exists("g:loaded_getscriptPlugin") +if exists("g:loaded_getscriptPlugin") + finish +endif +if &cp if &verbose echo "GetLatestVimScripts is not vi-compatible; not loaded (you need to set nocp)" endif finish endif -let g:loaded_getscriptPlugin = "v35" +let g:loaded_getscriptPlugin = "v36" let s:keepcpo = &cpo set cpo&vim |