Mercurial > vim
annotate runtime/plugin/gzip.vim @ 30789:c11da68d1a32 v9.0.0729
patch 9.0.0729: the rightleft and arabic features are disabled
Commit: https://github.com/vim/vim/commit/ae906c8b1bf023f4a15f38b4abef9dedc2f18467
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Oct 12 11:12:49 2022 +0100
patch 9.0.0729: the rightleft and arabic features are disabled
Problem: The rightleft and arabic features are disabled.
Solution: Re-enable the features, some users want to use the functionality.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 12 Oct 2022 12:15:05 +0200 |
parents | 7f88f6a3ed4c |
children | 4027cefc2aab |
rev | line source |
---|---|
7 | 1 " Vim plugin for editing compressed files. |
2 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
10319
169a62d5bcb9
commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59
Christian Brabandt <cb@256bit.org>
parents:
2111
diff
changeset
|
3 " Last Change: 2016 Oct 30 |
7 | 4 |
5 " Exit quickly when: | |
6 " - this plugin was already loaded | |
7 " - when 'compatible' is set | |
8 " - some autocommands are already taking care of compressed files | |
9 if exists("loaded_gzip") || &cp || exists("#BufReadPre#*.gz") | |
10 finish | |
11 endif | |
12 let loaded_gzip = 1 | |
13 | |
14 augroup gzip | |
15 " Remove all gzip autocommands | |
16 au! | |
17 | |
446 | 18 " Enable editing of gzipped files. |
19 " The functions are defined in autoload/gzip.vim. | |
20 " | |
21 " Set binary mode before reading the file. | |
22 " Use "gzip -d", gunzip isn't always available. | |
20379 | 23 autocmd BufReadPre,FileReadPre *.gz,*.bz2,*.Z,*.lzma,*.xz,*.lz,*.zst,*.br,*.lzo setlocal bin |
446 | 24 autocmd BufReadPost,FileReadPost *.gz call gzip#read("gzip -dn") |
25 autocmd BufReadPost,FileReadPost *.bz2 call gzip#read("bzip2 -d") | |
26 autocmd BufReadPost,FileReadPost *.Z call gzip#read("uncompress") | |
2034 | 27 autocmd BufReadPost,FileReadPost *.lzma call gzip#read("lzma -d") |
2111
aab202d244b6
updated for version 7.2.394
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
28 autocmd BufReadPost,FileReadPost *.xz call gzip#read("xz -d") |
10319
169a62d5bcb9
commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59
Christian Brabandt <cb@256bit.org>
parents:
2111
diff
changeset
|
29 autocmd BufReadPost,FileReadPost *.lz call gzip#read("lzip -d") |
10385
368468ef35cf
commit https://github.com/vim/vim/commit/c0514bf4777a1d55f5785b3887c5686fd0bbe870
Christian Brabandt <cb@256bit.org>
parents:
10319
diff
changeset
|
30 autocmd BufReadPost,FileReadPost *.zst call gzip#read("zstd -d --rm") |
20317 | 31 autocmd BufReadPost,FileReadPost *.br call gzip#read("brotli -d --rm") |
20379 | 32 autocmd BufReadPost,FileReadPost *.lzo call gzip#read("lzop -d -U") |
446 | 33 autocmd BufWritePost,FileWritePost *.gz call gzip#write("gzip") |
34 autocmd BufWritePost,FileWritePost *.bz2 call gzip#write("bzip2") | |
35 autocmd BufWritePost,FileWritePost *.Z call gzip#write("compress -f") | |
2034 | 36 autocmd BufWritePost,FileWritePost *.lzma call gzip#write("lzma -z") |
2111
aab202d244b6
updated for version 7.2.394
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
37 autocmd BufWritePost,FileWritePost *.xz call gzip#write("xz -z") |
10319
169a62d5bcb9
commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59
Christian Brabandt <cb@256bit.org>
parents:
2111
diff
changeset
|
38 autocmd BufWritePost,FileWritePost *.lz call gzip#write("lzip") |
10385
368468ef35cf
commit https://github.com/vim/vim/commit/c0514bf4777a1d55f5785b3887c5686fd0bbe870
Christian Brabandt <cb@256bit.org>
parents:
10319
diff
changeset
|
39 autocmd BufWritePost,FileWritePost *.zst call gzip#write("zstd --rm") |
20317 | 40 autocmd BufWritePost,FileWritePost *.br call gzip#write("brotli --rm") |
20379 | 41 autocmd BufWritePost,FileWritePost *.lzo call gzip#write("lzop -U") |
446 | 42 autocmd FileAppendPre *.gz call gzip#appre("gzip -dn") |
43 autocmd FileAppendPre *.bz2 call gzip#appre("bzip2 -d") | |
44 autocmd FileAppendPre *.Z call gzip#appre("uncompress") | |
2034 | 45 autocmd FileAppendPre *.lzma call gzip#appre("lzma -d") |
2111
aab202d244b6
updated for version 7.2.394
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
46 autocmd FileAppendPre *.xz call gzip#appre("xz -d") |
10319
169a62d5bcb9
commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59
Christian Brabandt <cb@256bit.org>
parents:
2111
diff
changeset
|
47 autocmd FileAppendPre *.lz call gzip#appre("lzip -d") |
10385
368468ef35cf
commit https://github.com/vim/vim/commit/c0514bf4777a1d55f5785b3887c5686fd0bbe870
Christian Brabandt <cb@256bit.org>
parents:
10319
diff
changeset
|
48 autocmd FileAppendPre *.zst call gzip#appre("zstd -d --rm") |
20317 | 49 autocmd FileAppendPre *.br call gzip#appre("brotli -d --rm") |
20379 | 50 autocmd FileAppendPre *.lzo call gzip#appre("lzop -d -U") |
446 | 51 autocmd FileAppendPost *.gz call gzip#write("gzip") |
52 autocmd FileAppendPost *.bz2 call gzip#write("bzip2") | |
53 autocmd FileAppendPost *.Z call gzip#write("compress -f") | |
2034 | 54 autocmd FileAppendPost *.lzma call gzip#write("lzma -z") |
2111
aab202d244b6
updated for version 7.2.394
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
55 autocmd FileAppendPost *.xz call gzip#write("xz -z") |
10319
169a62d5bcb9
commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59
Christian Brabandt <cb@256bit.org>
parents:
2111
diff
changeset
|
56 autocmd FileAppendPost *.lz call gzip#write("lzip") |
10385
368468ef35cf
commit https://github.com/vim/vim/commit/c0514bf4777a1d55f5785b3887c5686fd0bbe870
Christian Brabandt <cb@256bit.org>
parents:
10319
diff
changeset
|
57 autocmd FileAppendPost *.zst call gzip#write("zstd --rm") |
20317 | 58 autocmd FileAppendPost *.br call gzip#write("brotli --rm") |
20379 | 59 autocmd FileAppendPost *.lzo call gzip#write("lzop -U") |
7 | 60 augroup END |