Mercurial > vim
annotate runtime/doc/pi_gzip.txt @ 3135:7919a3d7333b v7.3.338
updated for version 7.3.338
Problem: Using getchar() in an expression mapping doesn't work well.
Solution: Don't save and restore the typeahead. (James Vega)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 12 Oct 2011 22:02:14 +0200 |
parents | 073ff46fe397 |
children | 9910cbff5f16 |
rev | line source |
---|---|
2572
ee53a39d5896
Last changes for the 7.3 release!
Bram Moolenaar <bram@vim.org>
parents:
2561
diff
changeset
|
1 *pi_gzip.txt* For Vim version 7.3. Last change: 2002 Oct 29 |
7 | 2 |
3 | |
4 VIM REFERENCE MANUAL by Bram Moolenaar | |
5 | |
6 | |
7 Editing compressed files with Vim *gzip* *bzip2* *compress* | |
8 | |
9 1. Autocommands |gzip-autocmd| | |
10 | |
11 The functionality mentioned here is a |standard-plugin|. | |
12 This plugin is only available if 'compatible' is not set. | |
13 You can avoid loading this plugin by setting the "loaded_gzip" variable: > | |
14 :let loaded_gzip = 1 | |
15 | |
16 {Vi does not have any of this} | |
17 | |
18 ============================================================================== | |
19 1. Autocommands *gzip-autocmd* | |
20 | |
21 The plugin installs autocommands to intercept reading and writing of files | |
22 with these extensions: | |
23 | |
24 extension compression ~ | |
25 *.Z compress (Lempel-Ziv) | |
26 *.gz gzip | |
27 *.bz2 bzip2 | |
28 | |
29 That's actually the only thing you need to know. There are no options. | |
30 | |
31 After decompressing a file, the filetype will be detected again. This will | |
32 make a file like "foo.c.gz" get the "c" filetype. | |
33 | |
34 If you have 'patchmode' set, it will be appended after the extension for | |
35 compression. Thus editing the patchmode file will not give you the automatic | |
36 decompression. You have to rename the file if you want this. | |
37 | |
38 ============================================================================== | |
39 vim:tw=78:ts=8:ft=help:norl: |