forked from ma6174/vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpi_zip.cnx
executable file
·105 lines (88 loc) · 4.84 KB
/
pi_zip.cnx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
*pi_zip.txt* For Vim version 7.3. 最近更新: 2010年5月
+====================+
| Zip 文件接口 |
+====================+
译者: Willis
http://vimcdoc.sf.net
Author: Charles E. Campbell, Jr. <[email protected]>
(remove NOSPAM from Campbell's email first)
Copyright: Copyright (C) 2005-2009 Charles E Campbell, Jr *zip-copyright*
Permission is hereby granted to use and distribute this code,
with or without modifications, provided that this copyright
notice is copied with it. Like anything else that's free,
zip.vim, zipPlugin.vim, and pi_zip.txt are provided *as is*
and it comes with no warranty of any kind, either expressed or
implied. By using this plugin, you agree that in no event will
the copyright holder be liable for any damages resulting from
the use of this software.
==============================================================================
1. 内容 *zip* *zip-contents*
1. 内容....................................................|zip-contents|
2. 用法....................................................|zip-usage|
3. 附加扩展名..............................................|zip-extension|
4. 历史....................................................|zip-history|
==============================================================================
2. 用法 *zip-usage* *zip-manual*
编辑 *.zip 文件时,此插件进行处理,显示内容页面。移动光标到文件上,然后按
<return> 键,就可以选择该文件进行编辑。编辑后,可以写回该文件。目前,不能用
该插件建立新的 zip 归档文件。
选 项
*g:zip_nomax*
如果此变量存在且为真,文件窗口在打开时不会自动最大化。
*g:zip_shq*
不同的操作系统可能使用一个或多个 shell 来执行命令。Zip 试图猜测正确的引号使
用机制,使得文件名中可以包含空格和其它;如果猜错了,可用 >
g:zip_shq
< 修正。它在 Unix 上缺省是单引号 ('),而 Windows 上缺省是双引号 (")。如果你希
望不用引号,简单地在 <.vimrc> 里把 g:zip_shq 置为空串 (let g:zip_shq= "")。
*g:zip_unzipcmd*
用此选项指定执行 "unzip" 任务的程序,用于浏览。缺省: >
let g:zip_unzipcmd= "unzip"
<
*g:zip_zipcmd*
用此选项指定执行 "zip" 任务的程序,用于写入 (更新) 已在 zip 包中的文件;缺
省: >
let g:zip_zipcmd= "zip"
<
禁 止 载 入~
如果由于某种原因你不想 vim 检查 zip 文件,在 <.vimrc> 中定义两个变量就可以
不载入 zip 插件: >
let g:loaded_zipPlugin= 1
let g:loaded_zip = 1
<
==============================================================================
3. 附加扩展名 *zip-extension*
看来有不少归档程序生成 zip 文件但不使用 .zip 扩展名 (.jar、.xpi 等)。要处理
这些文件,在 <.vimrc> 文件中放上: >
au BufReadCmd *.jar,*.xpi call zip#Browse(expand("<amatch>"))
<
你可以自由扩展该行以包含更多应被当作 zip 文件的扩展名。
==============================================================================
4. 历史 (英文) *zip-history* {{{1
v17 May 09, 2008 * arno caught a security bug
v15 Sep 07, 2007 * &shq now used if not the empty string for g:zip_shq
v14 May 07, 2007 * using b:zipfile instead of w:zipfile to avoid problem
when editing alternate file to bring up a zipfile
v10 May 02, 2006 * now using "redraw then echo" to show messages, instead
of "echo and prompt user"
* g:zip_shq provided to allow for quoting control for the
command being passed via :r! ... commands.
v8 Apr 10, 2006 * Bram Moolenaar reported that he received an error message
due to "Pattern not found: ^.*\%0c"; this was caused by
stridx finding a Name... at the beginning of the line;
zip.vim tried 4,$s/^.*\%0c//, but that doesn't work.
Fixed.
v7 Mar 22, 2006 * escaped some characters that can cause filename handling
problems.
v6 Dec 21, 2005 * writing to files not in directories caused problems -
fixed (pointed out by Christian Robinson)
v5 Nov 22, 2005 * report option workaround installed
v3 Oct 18, 2005 * <amatch> used instead of <afile> in autocmds
v2 Sep 16, 2005 * silenced some commands (avoiding hit-enter prompt)
* began testing under Windows; works thus far
* filetype detection fixed
Nov 03, 2005 * handles writing zipfiles across a network using
netrw#NetWrite()
v1 Sep 15, 2005 * Initial release, had browsing, reading, and writing
==============================================================================
vim:tw=78:ts=8:ft=help:fdm=marker