1" ---------------------------------------------------------------------
2" getscriptPlugin.vim
3"  Author:	Charles E. Campbell
4"  Date:	Nov 29, 2013
5"  Installing:	:help glvs-install
6"  Usage:	:help glvs
7"
8" GetLatestVimScripts: 642 1 :AutoInstall: getscript.vim
9"
10" (Rom 15:11 WEB) Again, "Praise the Lord, all you Gentiles!  Let
11" all the peoples praise Him."
12" ---------------------------------------------------------------------
13" Initialization:	{{{1
14" if you're sourcing this file, surely you can't be
15" expecting vim to be in its vi-compatible mode
16if exists("g:loaded_getscriptPlugin")
17 finish
18endif
19if &cp
20 if &verbose
21  echo "GetLatestVimScripts is not vi-compatible; not loaded (you need to set nocp)"
22 endif
23 finish
24endif
25let g:loaded_getscriptPlugin = "v36"
26let s:keepcpo                = &cpo
27set cpo&vim
28
29" ---------------------------------------------------------------------
30"  Public Interface: {{{1
31com!        -nargs=0 GetLatestVimScripts call getscript#GetLatestVimScripts()
32com!        -nargs=0 GetScripts          call getscript#GetLatestVimScripts()
33sil! com    -nargs=0 GLVS                call getscript#GetLatestVimScripts()
34
35" ---------------------------------------------------------------------
36" Restore Options: {{{1
37let &cpo= s:keepcpo
38unlet s:keepcpo
39
40" ---------------------------------------------------------------------
41" vim: ts=8 sts=2 fdm=marker nowrap
42