-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
83 changed files
with
169 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
" zip.vim: Handles browsing zipfiles | ||
" AUTOLOAD PORTION | ||
" Date: Jan 07, 2020 | ||
" Version: 30 | ||
" Version: 31 | ||
" Maintainer: Charles E Campbell <[email protected]> | ||
" License: Vim License (see vim's :help license) | ||
" Copyright: Copyright (C) 2005-2019 Charles E. Campbell {{{1 | ||
|
@@ -20,7 +20,7 @@ | |
if &cp || exists("g:loaded_zip") | ||
finish | ||
endif | ||
let g:loaded_zip= "v30" | ||
let g:loaded_zip= "v31" | ||
if v:version < 702 | ||
echohl WarningMsg | ||
echo "***warning*** this version of zip needs vim 7.2 or later" | ||
|
@@ -65,7 +65,7 @@ endif | |
" zip#Browse: {{{2 | ||
fun! zip#Browse(zipfile) | ||
" call Dfunc("zip#Browse(zipfile<".a:zipfile.">)") | ||
" sanity check: ensure that the zipfile has "PK" as its first two letters | ||
" sanity check: insure that the zipfile has "PK" as its first two letters | ||
" (zipped files have a leading PK as a "magic cookie") | ||
if !filereadable(a:zipfile) || readfile(a:zipfile, "", 1)[0] !~ '^PK' | ||
exe "noswapfile noautocmd noswapfile e ".fnameescape(a:zipfile) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.