From 0c7b74a0f6846a4b9ef36695a910a8fd70af2113 Mon Sep 17 00:00:00 2001 From: drjaska Date: Fri, 8 Aug 2025 02:37:38 +0300 Subject: [PATCH] chore(extract): Fix supported file extension sorting Previously the sorting was case sensitive (A-Z then a-z) in `README.md` but not in the completions file `_extract`, now both are case insensitive. --- plugins/extract/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/extract/README.md b/plugins/extract/README.md index 82ec7e897..7bedfb1c6 100644 --- a/plugins/extract/README.md +++ b/plugins/extract/README.md @@ -17,7 +17,6 @@ plugins=(... extract) | Extension | Description | | :---------------- | :-------------------------------------- | | `7z` | 7zip file | -| `Z` | Z archive (LZW) | | `apk` | Android app file | | `aar` | Android library file | | `bz2` | Bzip2 file | @@ -60,6 +59,7 @@ plugins=(... extract) | `whl` | Python wheel file | | `xpi` | Mozilla XPI module file | | `xz` | LZMA2 archive | +| `Z` | Z archive (LZW) | | `zip` | Zip archive | | `zlib` | zlib archive | | `zst` | Zstandard file (zstd) |