Bram Moolenaar | 7b5f832 | 2006-03-23 22:47:08 +0000 | [diff] [blame] | 1 | *zip.txt* Zip File Interface Mar 22, 2006 |
Bram Moolenaar | 9835862 | 2005-11-28 22:58:23 +0000 | [diff] [blame] | 2 | |
| 3 | Author: Charles E. Campbell, Jr. <NdrOchip@ScampbellPfamily.AbizM> |
| 4 | (remove NOSPAM from Campbell's email first) |
| 5 | Copyright: Copyright (C) 2005 Charles E. Campbell, Jr. {{{1 *zip-copyright* |
| 6 | Permission is hereby granted to use and distribute this code, |
| 7 | with or without modifications, provided that this copyright |
| 8 | notice is copied with it. Like anything else that's free, |
Bram Moolenaar | 86e0108 | 2005-12-29 22:45:34 +0000 | [diff] [blame] | 9 | zip.vim, zipPlugin.vim, and pi_zip.txt are provided *as is* |
| 10 | and it comes with no warranty of any kind, either expressed or |
| 11 | implied. By using this plugin, you agree that in no event will |
| 12 | the copyright holder be liable for any damages resulting from |
| 13 | the use of this software. |
Bram Moolenaar | 9835862 | 2005-11-28 22:58:23 +0000 | [diff] [blame] | 14 | |
| 15 | ============================================================================== |
| 16 | 1. Contents *zip* *zip-contents* |
| 17 | 1. Contents..................................................|zip-contents| |
| 18 | 2. Usage.....................................................|zip-usage| |
| 19 | 3. History...................................................|zip-history| |
| 20 | |
| 21 | ============================================================================== |
| 22 | 2. Usage *zip-usage* *zip-manual* |
| 23 | |
| 24 | When one edits a *.zip file, this plugin will handle displaying a |
| 25 | contents page. Select a file to edit by moving the cursor atop |
| 26 | the desired file, then hit the <return> key. After editing, one may |
| 27 | also write to the file. Currently, one may not make a new file in |
| 28 | zip archives via the plugin. |
| 29 | |
| 30 | ============================================================================== |
| 31 | 3. History *zip-history* |
Bram Moolenaar | 7b5f832 | 2006-03-23 22:47:08 +0000 | [diff] [blame] | 32 | v7 Mar 22, 2006 * escaped some characters that can cause filename handling |
| 33 | problems. |
Bram Moolenaar | 86e0108 | 2005-12-29 22:45:34 +0000 | [diff] [blame] | 34 | v6 Dec 21, 2005 * writing to files not in directories caused problems - |
| 35 | fixed (pointed out by Christian Robinson) |
Bram Moolenaar | 9835862 | 2005-11-28 22:58:23 +0000 | [diff] [blame] | 36 | v5 Nov 22, 2005 * report option workaround installed |
| 37 | v3 Oct 18, 2005 * <amatch> used instead of <afile> in autocmds |
| 38 | v2 Sep 16, 2005 * silenced some commands (avoiding hit-enter prompt) |
| 39 | * began testing under Windows; works thus far |
| 40 | * filetype detection fixed |
| 41 | Nov 03, 2005 * handles writing zipfiles across a network using |
| 42 | netrw#NetWrite() |
| 43 | v1 Sep 15, 2005 * Initial release, had browsing, reading, and writing |
| 44 | |
| 45 | ============================================================================== |
| 46 | vim:tw=78:ts=8:ft=help |