blob: fa4f3b071f313350daf6f7935de74c645f35934a [file] [log] [blame]
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00001*zip.txt* For Vim version 7.0d. Last change: 2006 Apr 10
Bram Moolenaarc01140a2006-03-24 22:21:52 +00002
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003 +====================+
4 | Zip File Interface |
5 +====================+
Bram Moolenaar98358622005-11-28 22:58:23 +00006
7Author: Charles E. Campbell, Jr. <NdrOchip@ScampbellPfamily.AbizM>
8 (remove NOSPAM from Campbell's email first)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00009Copyright: Copyright (C) 2005,2006 Charles E Campbell, Jr {{{1 *zip-copyright*
10 Permission is hereby granted to use and distribute this code,
11 with or without modifications, provided that this copyright
12 notice is copied with it. Like anything else that's free,
13 zip.vim, zipPlugin.vim, and pi_zip.txt are provided *as is*
14 and it comes with no warranty of any kind, either expressed or
15 implied. By using this plugin, you agree that in no event will
16 the copyright holder be liable for any damages resulting from
17 the use of this software.
Bram Moolenaar98358622005-11-28 22:58:23 +000018
19==============================================================================
201. Contents *zip* *zip-contents*
21 1. Contents..................................................|zip-contents|
22 2. Usage.....................................................|zip-usage|
23 3. History...................................................|zip-history|
24
25==============================================================================
262. Usage *zip-usage* *zip-manual*
27
28 When one edits a *.zip file, this plugin will handle displaying a
29 contents page. Select a file to edit by moving the cursor atop
30 the desired file, then hit the <return> key. After editing, one may
31 also write to the file. Currently, one may not make a new file in
32 zip archives via the plugin.
33
34==============================================================================
353. History *zip-history*
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000036 v8 Apr 10, 2006 * Bram Moolenaar reported that he received an error message
37 due to "Pattern not found: ^.*\%0c"; this was caused by
38 stridx finding a Name... at the beginning of the line;
39 zip.vim tried 4,$s/^.*\%0c//, but that doesn't work.
40 Fixed.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +000041 v7 Mar 22, 2006 * escaped some characters that can cause filename handling
42 problems.
Bram Moolenaar86e01082005-12-29 22:45:34 +000043 v6 Dec 21, 2005 * writing to files not in directories caused problems -
44 fixed (pointed out by Christian Robinson)
Bram Moolenaar98358622005-11-28 22:58:23 +000045 v5 Nov 22, 2005 * report option workaround installed
46 v3 Oct 18, 2005 * <amatch> used instead of <afile> in autocmds
47 v2 Sep 16, 2005 * silenced some commands (avoiding hit-enter prompt)
48 * began testing under Windows; works thus far
49 * filetype detection fixed
50 Nov 03, 2005 * handles writing zipfiles across a network using
51 netrw#NetWrite()
52 v1 Sep 15, 2005 * Initial release, had browsing, reading, and writing
53
54==============================================================================
55vim:tw=78:ts=8:ft=help