From 52ff5e3032eb5e39b49ce6f4e9a93cffdd39b830 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Fri, 7 Feb 2025 17:10:51 +0800 Subject: 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> --- runtime/doc/pi_gzip.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'runtime/doc') 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. -- cgit