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

b69cd52447

Co-authored-by: Corpulent Robin <177767857+corpulentrobin@users.noreply.github.com>
This commit is contained in:
zeertzjq
2025-02-07 17:10:51 +08:00
committed by GitHub
parent 5371659524
commit 52ff5e3032
4 changed files with 89 additions and 127 deletions

View File

@@ -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.