comparison runtime/doc/pi_tar.txt @ 2908:fd09a9c8468e

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Sun, 19 Jun 2011 05:09:16 +0200
parents 840c3cadb842
children af1e8a1714c2
comparison
equal deleted inserted replaced
2907:ea75da0af64d 2908:fd09a9c8468e
1 *pi_tar.txt* For Vim version 7.3. Last change: 2010 Nov 03 1 *pi_tar.txt* For Vim version 7.3. Last change: 2011 May 31
2 2
3 +====================+ 3 +====================+
4 | Tar File Interface | 4 | Tar File Interface |
5 +====================+ 5 +====================+
6 6
58 58
59 These options are variables that one may change, typically in one's 59 These options are variables that one may change, typically in one's
60 <.vimrc> file. 60 <.vimrc> file.
61 Default 61 Default
62 Variable Value Explanation 62 Variable Value Explanation
63 *g:tar_browseoptions* "Ptf" used to get a list of contents 63 *g:tar_browseoptions* "Ptf" used to get a list of contents
64 *g:tar_readoptions* "OPxf" used to extract a file from a tarball 64 *g:tar_readoptions* "OPxf" used to extract a file from a tarball
65 *g:tar_cmd* "tar" the name of the tar program 65 *g:tar_cmd* "tar" the name of the tar program
66 *g:tar_nomax* 0 if true, file window will not be maximized 66 *g:tar_nomax* 0 if true, file window will not be maximized
67 *g:tar_secure* undef if exists: 67 *g:tar_secure* undef if exists:
68 "--"s will be used to prevent unwanted 68 "--"s will be used to prevent unwanted
69 option expansion in tar commands. 69 option expansion in tar commands.
70 Please be sure that your tar command 70 Please be sure that your tar command
71 accepts "--"; Posix compliant tar 71 accepts "--"; Posix compliant tar
72 utilities do accept them. 72 utilities do accept them.
74 The tar plugin will reject any tar 74 The tar plugin will reject any tar
75 files or member files that begin with 75 files or member files that begin with
76 "-" 76 "-"
77 Not all tar's support the "--" which is why 77 Not all tar's support the "--" which is why
78 it isn't default. 78 it isn't default.
79 *g:tar_writeoptions* "uf" used to update/replace a file 79 *g:tar_writeoptions* "uf" used to update/replace a file
80 80
81 81
82 ============================================================================== 82 ==============================================================================
83 4. History *tar-history* 83 4. History *tar-history*
84 84
85 85
86 v27 May 31, 2011 * moved cygwin detection before g:tar_copycmd handling
87 * inserted additional |:keepj| modifiers
88 * changed silent to sil! (|:silent|)
86 v26 Aug 09, 2010 * uses buffer-local instead of window variables to hold 89 v26 Aug 09, 2010 * uses buffer-local instead of window variables to hold
87 tarfile name 90 tarfile name
91 * inserted keepj before 0d to protect jump list
88 v25 Jun 19, 2010 * (Jan Steffens) added support for xz compression 92 v25 Jun 19, 2010 * (Jan Steffens) added support for xz compression
89 v24 Apr 07, 2009 * :Untarvim command implemented 93 v24 Apr 07, 2009 * :Untarvim command implemented
90 Sep 28, 2009 * Added lzma support 94 Sep 28, 2009 * Added lzma support
91 v22 Aug 08, 2008 * security fixes 95 v22 Aug 08, 2008 * security fixes
92 v16 Jun 06, 2008 * tarfile:: used instead of tarfile: when editing files 96 v16 Jun 06, 2008 * tarfile:: used instead of tarfile: when editing files