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.
This commit is contained in:
drjaska 2025-08-08 02:37:38 +03:00
commit 0c7b74a0f6
No known key found for this signature in database

View file

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