Skip to content

Commit c9e9720

Browse files
committed
feat(7z): complete 7zzs
In addition to 7zz, 7-Zip also provides a binary named 7zzs in their downloads for Linux. 7zzs is a statically-linked version of 7zz. Apply completions to it as well. Signed-off-by: Kevin Locke <[email protected]>
1 parent 90bacf1 commit c9e9720

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

completions/7z

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,6 @@ _7z()
123123
fi
124124
fi
125125
} &&
126-
complete -F _7z 7z 7za 7zr 7zz
126+
complete -F _7z 7z 7za 7zr 7zz 7zzs
127127

128128
# ex: filetype=sh

completions/Makefile.am

+3-1
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,7 @@ CLEANFILES = \
485485
7za \
486486
7zr \
487487
7zz \
488+
7zzs \
488489
aclocal-1.10 \
489490
aclocal-1.11 \
490491
aclocal-1.12 \
@@ -801,7 +802,8 @@ symlinks: $(DATA)
801802
$(ss) 7z \
802803
7za \
803804
7zr \
804-
7zz
805+
7zz \
806+
7zzs
805807
$(ss) aclocal \
806808
aclocal-1.10 aclocal-1.11 aclocal-1.12 aclocal-1.13 \
807809
aclocal-1.14 aclocal-1.15 aclocal-1.16

0 commit comments

Comments
 (0)