From 9964e468c0209f6b8286e0b08109817c845a3079 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 5 May 2007 17:54:07 +0000 Subject: updated for version 7.1a --- runtime/plugin/zipPlugin.vim | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) (limited to 'runtime/plugin/zipPlugin.vim') diff --git a/runtime/plugin/zipPlugin.vim b/runtime/plugin/zipPlugin.vim index 20319a3284..69e98bd669 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 +" Date: Jul 18, 2006 +" Maintainer: Charles E Campbell, Jr " 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("")) 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 -- cgit v1.2.3