Vim 7.2b ready for testing.
[MacVim/KaoriYa.git] / runtime / plugin / zipPlugin.vim
blobe198c66e2f3c01ee52a4164f0d3958404b0c7dc6
1 " zipPlugin.vim: Handles browsing zipfiles
2 "            PLUGIN PORTION
3 " Date:                 Oct 05, 2007
4 " Maintainer:   Charles E Campbell, Jr <NdrOchip@ScampbellPfamily.AbizM-NOSPAM>
5 " License:              Vim License  (see vim's :help license)
6 " Copyright:    Copyright (C) 2005,2006 Charles E. Campbell, Jr. {{{1
7 "               Permission is hereby granted to use and distribute this code,
8 "               with or without modifications, provided that this copyright
9 "               notice is copied with it. Like anything else that's free,
10 "               zipPlugin.vim is provided *as is* and comes with no warranty
11 "               of any kind, either expressed or implied. By using this
12 "               plugin, you agree that in no event will the copyright
13 "               holder be liable for any damages resulting from the use
14 "               of this software.
16 " (James 4:8 WEB) Draw near to God, and he will draw near to you.
17 " Cleanse your hands, you sinners; and purify your hearts, you double-minded.
18 " ---------------------------------------------------------------------
19 " Load Once: {{{1
20 if &cp || exists("g:loaded_zipPlugin")
21  finish
22 endif
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
32 let g:loaded_zipPlugin = "v21+b"
33 let s:keepcpo          = &cpo
34 set cpo&vim
36 " ---------------------------------------------------------------------
37 " Public Interface: {{{1
38 augroup zip
39  au!
40  au BufReadCmd   zipfile:*      call zip#Read(expand("<amatch>"), 1)
41  au FileReadCmd  zipfile:*      call zip#Read(expand("<amatch>"), 0)
42  au BufWriteCmd  zipfile:*      call zip#Write(expand("<amatch>"))
43  au FileWriteCmd zipfile:*      call zip#Write(expand("<amatch>"))
45  if has("unix")
46   au BufReadCmd   zipfile:*/*   call zip#Read(expand("<amatch>"), 1)
47   au FileReadCmd  zipfile:*/*   call zip#Read(expand("<amatch>"), 0)
48   au BufWriteCmd  zipfile:*/*   call zip#Write(expand("<amatch>"))
49   au FileWriteCmd zipfile:*/*   call zip#Write(expand("<amatch>"))
50  endif
52  au BufReadCmd   *.zip,*.jar,*.xpi,*.war,*.ear          call zip#Browse(expand("<amatch>"))
53 augroup END
55 " ---------------------------------------------------------------------
56 "  Restoration And Modelines: {{{1
57 "  vim: fdm=marker
58 let &cpo= s:keepcpo
59 unlet s:keepcpo