comparison runtime/plugin/zipPlugin.vim @ 1668:0b796e045c42 v7.2b.000

updated for version 7.2b-000
author vimboss
date Sun, 13 Jul 2008 17:41:49 +0000
parents 73fe8baea242
children f4f8014d516e
comparison
equal deleted inserted replaced
1667:131dbd3d2a4b 1668:0b796e045c42
18 " --------------------------------------------------------------------- 18 " ---------------------------------------------------------------------
19 " Load Once: {{{1 19 " Load Once: {{{1
20 if &cp || exists("g:loaded_zipPlugin") 20 if &cp || exists("g:loaded_zipPlugin")
21 finish 21 finish
22 endif 22 endif
23 let g:loaded_zipPlugin = "v18" 23
24 " Don't use the plugin if fnameescape() is not available
25 if !exists("*fnameescape")
26 if &verbose > 1
27 echoerr "zipPlugin not loaded because fnameescape() is not available"
28 endif
29 finish
30 endif
31
32 let g:loaded_zipPlugin = "v21+b"
24 let s:keepcpo = &cpo 33 let s:keepcpo = &cpo
25 set cpo&vim 34 set cpo&vim
26 35
27 " --------------------------------------------------------------------- 36 " ---------------------------------------------------------------------
28 " Public Interface: {{{1 37 " Public Interface: {{{1