diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-05 17:54:07 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-05 17:54:07 +0000 |
commit | 9964e468c0209f6b8286e0b08109817c845a3079 (patch) | |
tree | 3c53288cff0d4c2e32169d8eb4cd53cc343ad0bc /runtime/plugin/zipPlugin.vim | |
parent | d5ab34bd5ecc748d5502f149c476968e5ec2b7c9 (diff) | |
download | vim-git-9964e468c0209f6b8286e0b08109817c845a3079.tar.gz |
updated for version 7.1a
Diffstat (limited to 'runtime/plugin/zipPlugin.vim')
-rw-r--r-- | runtime/plugin/zipPlugin.vim | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/runtime/plugin/zipPlugin.vim b/runtime/plugin/zipPlugin.vim index 20319a328..69e98bd66 100644 --- a/runtime/plugin/zipPlugin.vim +++ b/runtime/plugin/zipPlugin.vim @@ -1,9 +1,9 @@ " zipPlugin.vim: Handles browsing zipfiles " PLUGIN PORTION -" Date: Sep 14, 2005 -" Maintainer: Charles E Campbell, Jr <drchipNOSPAM at campbellfamily dot biz> +" Date: Jul 18, 2006 +" Maintainer: Charles E Campbell, Jr <NdrOchip@ScampbellPfamily.AbizM-NOSPAM> " License: Vim License (see vim's :help license) -" Copyright: Copyright (C) 2005 Charles E. Campbell, Jr. {{{1 +" Copyright: Copyright (C) 2005,2006 Charles E. Campbell, Jr. {{{1 " Permission is hereby granted to use and distribute this code, " with or without modifications, provided that this copyright " notice is copied with it. Like anything else that's free, @@ -12,10 +12,16 @@ " plugin, you agree that in no event will the copyright " holder be liable for any damages resulting from the use " of this software. - +" +" (James 4:8 WEB) Draw near to God, and he will draw near to you. +" Cleanse your hands, you sinners; and purify your hearts, you double-minded. " --------------------------------------------------------------------- -" Initialization: {{{1 -let s:keepcpo= &cpo +" Load Once: {{{1 +if &cp || exists("g:loaded_zipPlugin") + finish +endif +let g:loaded_zipPlugin = 1 +let s:keepcpo = &cpo set cpo&vim " --------------------------------------------------------------------- @@ -37,8 +43,8 @@ augroup zip au BufReadCmd *.zip call zip#Browse(expand("<amatch>")) augroup END -" ------------------------------------------------------------------------ -" Modelines And Restoration: {{{1 +" --------------------------------------------------------------------- +" Restoration And Modelines: {{{1 +" vim: fdm=marker let &cpo= s:keepcpo unlet s:keepcpo -" vim:ts=8 fdm=marker |