aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2025-02-07 17:10:51 +0800
committerGitHub <noreply@github.com>2025-02-07 17:10:51 +0800
commit52ff5e3032eb5e39b49ce6f4e9a93cffdd39b830 (patch)
tree2fa396ed80633744d7c531693572c6d342d943c5 /runtime/doc
parent5371659524089b425887af1ce14bf9a374f0f234 (diff)
downloadrneovim-52ff5e3032eb5e39b49ce6f4e9a93cffdd39b830.tar.gz
rneovim-52ff5e3032eb5e39b49ce6f4e9a93cffdd39b830.tar.bz2
rneovim-52ff5e3032eb5e39b49ce6f4e9a93cffdd39b830.zip
vim-patch:b69cd52: runtime(misc): Add support for lz4 to tar & gzip plugin (#32360)
while at it, clean up the tar plugin a bit and sort the patterns for the tar and gzip plugin References: - https://github.com/lz4/lz4 - https://lz4.org/ closes: vim/vim#16591 https://github.com/vim/vim/commit/b69cd52447584cedadc1513aa3acd5b4cd9f4340 Co-authored-by: Corpulent Robin <177767857+corpulentrobin@users.noreply.github.com>
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/pi_gzip.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/pi_gzip.txt b/runtime/doc/pi_gzip.txt
index 93a2388c26..e8a1de9cef 100644
--- a/runtime/doc/pi_gzip.txt
+++ b/runtime/doc/pi_gzip.txt
@@ -28,12 +28,13 @@ The plugin installs autocommands to intercept reading and writing of files
with these extensions:
extension compression >
- *.Z compress (Lempel-Ziv)
- *.gz gzip
*.bz2 bzip2
+ *.gz gzip
+ *.lz lzip
+ *.lz4 lz4
*.lzma lzma
*.xz xz
- *.lz lzip
+ *.Z compress (Lempel-Ziv)
*.zst zstd
That's actually the only thing you need to know. There are no options.