blob: 45c858aac8e13df24f5c97a35fd32ef07ba8c625 [file] [log] [blame]
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001" ---------------------------------------------------------------------
2" getscriptPlugin.vim
Bram Moolenaarff034192013-04-24 18:51:19 +02003" Author: Charles E. Campbell
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004" Date: Jan 07, 2008
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00005" Installing: :help glvs-install
6" Usage: :help glvs
7"
Bram Moolenaarbae0c162007-05-10 19:30:25 +00008" GetLatestVimScripts: 642 1 :AutoInstall: getscript.vim
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00009"
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 &cp || exists("g:loaded_getscriptPlugin")
17 if &verbose
18 echo "GetLatestVimScripts is not vi-compatible; not loaded (you need to set nocp)"
19 endif
20 finish
21endif
Bram Moolenaarff034192013-04-24 18:51:19 +020022let g:loaded_getscriptPlugin = "v35"
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000023let s:keepcpo = &cpo
24set cpo&vim
25
26" ---------------------------------------------------------------------
27" Public Interface: {{{1
28com! -nargs=0 GetLatestVimScripts call getscript#GetLatestVimScripts()
29com! -nargs=0 GetScripts call getscript#GetLatestVimScripts()
30silent! com -nargs=0 GLVS call getscript#GetLatestVimScripts()
31
Bram Moolenaar8c8de832008-06-24 22:58:06 +000032" ---------------------------------------------------------------------
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000033" Restore Options: {{{1
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000034let &cpo= s:keepcpo
Bram Moolenaar8c8de832008-06-24 22:58:06 +000035unlet s:keepcpo
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000036
37" ---------------------------------------------------------------------
38" vim: ts=8 sts=2 fdm=marker nowrap