comparison runtime/doc/pi_tar.txt @ 30967:eb2638f278bf

Update runtime files Commit: https://github.com/vim/vim/commit/6ebe4f970b8b398087076a72a7aae6e680fb92da Author: Bram Moolenaar <Bram@vim.org> Date: Fri Oct 28 20:47:54 2022 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Nov 2022 11:18:47 +0100
parents f8116058ca76
children 5acd6f02ea35
comparison
equal deleted inserted replaced
30966:685ee8453163 30967:eb2638f278bf
1 *pi_tar.txt* For Vim version 9.0. Last change: 2020 Jan 07 1 *pi_tar.txt* For Vim version 9.0. Last change: 2022 Oct 17
2 2
3 +====================+ 3 +====================+
4 | Tar File Interface | 4 | Tar File Interface |
5 +====================+ 5 +====================+
6 6
78 ============================================================================== 78 ==============================================================================
79 3. Options *tar-options* 79 3. Options *tar-options*
80 80
81 These options are variables that one may change, typically in one's 81 These options are variables that one may change, typically in one's
82 <.vimrc> file. 82 <.vimrc> file.
83 Default 83 Default
84 Variable Value Explanation 84 Variable Value Explanation
85 *g:tar_browseoptions* "Ptf" used to get a list of contents 85 *g:tar_browseoptions* "Ptf" used to get a list of contents
86 *g:tar_readoptions* "OPxf" used to extract a file from a tarball 86 *g:tar_readoptions* "OPxf" used to extract a file from a tarball
87 *g:tar_cmd* "tar" the name of the tar program 87 *g:tar_cmd* "tar" the name of the tar program
88 *g:tar_nomax* 0 if true, file window will not be maximized 88 *g:tar_nomax* 0 if true, file window will not be maximized
89 *g:tar_secure* undef if exists: 89 *g:tar_secure* undef if exists:
90 "--"s will be used to prevent unwanted 90 "--"s will be used to prevent unwanted
91 option expansion in tar commands. 91 option expansion in tar commands.
92 Please be sure that your tar command 92 Please be sure that your tar command
93 accepts "--"; Posix compliant tar 93 accepts "--"; Posix compliant tar
94 utilities do accept them. 94 utilities do accept them.
95 if not exists: 95 if not exists:
96 The tar plugin will reject any tar 96 The tar plugin will reject any tar
97 files or member files that begin with 97 files or member files that begin with
98 "-" 98 "-"
99 Not all tar's support the "--" which is why 99 Not all tar's support the "--" which is why
100 it isn't default. 100 it isn't default.
101 *g:tar_writeoptions* "uf" used to update/replace a file 101 *g:tar_writeoptions* "uf" used to update/replace a file