Skip to content

Commit bbc5bee

Browse files
committed
Archive file extensions in ASCII order
1 parent bc7ae46 commit bbc5bee

File tree

1 file changed

+13
-1
lines changed
  • QuickLook.Plugin/QuickLook.Plugin.ArchiveViewer

1 file changed

+13
-1
lines changed

QuickLook.Plugin/QuickLook.Plugin.ArchiveViewer/Plugin.cs

+13-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,19 @@ namespace QuickLook.Plugin.ArchiveViewer;
2626
public class Plugin : IViewer
2727
{
2828
private static readonly string[] Extensions =
29-
[".rar", ".zip", ".tar", ".tgz", ".gz", ".bz2", ".lz", ".xz", ".7z", ".jar", ".crx", ".nupkg", ".cb7", ".cbr", ".cbt", ".cbz"];
29+
[
30+
".7z",
31+
".bz2",
32+
".cb7", ".cbr", ".cbt", ".cbz", ".crx",
33+
".gz",
34+
".jar",
35+
".lz",
36+
".nupkg",
37+
".rar",
38+
".tar", ".tgz",
39+
".xz",
40+
".zip",
41+
];
3042

3143
private ArchiveInfoPanel _panel;
3244

0 commit comments

Comments
 (0)