comparison runtime/doc/pi_tar.txt @ 819:23f82b5d2814 v7.0c10

updated for version 7.0c10
author vimboss
date Wed, 05 Apr 2006 20:41:53 +0000
parents 9f345c48220b
children 6675076019ae
comparison
equal deleted inserted replaced
818:1f929f3ca806 819:23f82b5d2814
1 *tar.txt* For Vim version 7.0c. Last change: 2006 Mar 24 1 *tar.txt* For Vim version 7.0c. Last change: 2006 Mar 24
2 2
3 Tar File Interface 3 +====================+
4 | Tar File Interface |
5 +====================+
4 6
5 Author: Charles E. Campbell, Jr. <NdrOchip@ScampbellPfamily.AbizM> 7 Author: Charles E. Campbell, Jr. <NdrOchip@ScampbellPfamily.AbizM>
6 (remove NOSPAM from Campbell's email first) 8 (remove NOSPAM from Campbell's email first)
7 Copyright: The GPL (gnu public license) applies to *tar-copyright* 9 Copyright: The GPL (gnu public license) applies to *tar-copyright*
8 tarPlugin.vim, and pi_tar.txt. 10 tarPlugin.vim, and pi_tar.txt.
10 12
11 ============================================================================== 13 ==============================================================================
12 1. Contents *tar* *tar-contents* 14 1. Contents *tar* *tar-contents*
13 1. Contents..................................................|tar-contents| 15 1. Contents..................................................|tar-contents|
14 2. Usage.....................................................|tar-usage| 16 2. Usage.....................................................|tar-usage|
15 3. History...................................................|tar-history| 17 3. Options...................................................|tar-options|
18 4. History...................................................|tar-history|
16 19
17 ============================================================================== 20 ==============================================================================
18 2. Usage *tar-usage* *tar-manual* 21 2. Usage *tar-usage* *tar-manual*
19 22
20 When one edits a *.tar file, this plugin will handle displaying a 23 When one edits a *.tar file, this plugin will handle displaying a
22 the desired file, then hit the <return> key. After editing, one may 25 the desired file, then hit the <return> key. After editing, one may
23 also write to the file. Currently, one may not make a new file in 26 also write to the file. Currently, one may not make a new file in
24 tar archives via the plugin. 27 tar archives via the plugin.
25 28
26 ============================================================================== 29 ==============================================================================
27 3. History *tar-history* 30 3. Options *tar-options*
31
32 These options are variables that one may change, typically in one's
33 <.vimrc> file.
34 Default
35 Variable Value Explanation
36 *g:tar_browseoptions* "Ptf" used to get a list of contents
37 *g:tar_readoptions* "OPxf" used to extract a file from a tarball
38 *g:tar_cmd* "tar" the name of the tar program
39 *g:tar_writeoptions* "uf" used to update/replace a file
40
41
42 ==============================================================================
43 4. History *tar-history*
44
45 v7 Mar 22, 2006 * work on making tar plugin work across network
46 Mar 27, 2006 * g:tar_cmd now available for users to change the name
47 of the tar program to be used. By default, of course,
48 its "tar".
28 v6 Dec 21, 2005 * writing to files not in directories caused problems - 49 v6 Dec 21, 2005 * writing to files not in directories caused problems -
29 fixed (pointed out by Christian Robinson) 50 fixed (pointed out by Christian Robinson)
30 v5 Nov 22, 2005 * report option workaround installed 51 v5 Nov 22, 2005 * report option workaround installed
31 v3 Sep 16, 2005 * handles writing files in an archive back to the 52 v3 Sep 16, 2005 * handles writing files in an archive back to the
32 archive 53 archive