Skip to content

Commit f575693

Browse files
authored
Merge pull request #762 from kevinoid/7zz
Add support for 7zr and 7zz
2 parents 45d2b64 + 08d3b4b commit f575693

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

completions/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
/7za
2+
/7zr
3+
/7zz
4+
/7zzs
25
/aclocal-1.1[0123456]
36
/alpine
47
/alternatives

completions/7z

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

128128
# ex: filetype=sh

completions/Makefile.am

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,9 @@ EXTRA_DIST = $(bashcomp_DATA)
483483

484484
CLEANFILES = \
485485
7za \
486+
7zr \
487+
7zz \
488+
7zzs \
486489
aclocal-1.10 \
487490
aclocal-1.11 \
488491
aclocal-1.12 \
@@ -797,7 +800,10 @@ CLEANFILES = \
797800

798801
symlinks: $(DATA)
799802
$(ss) 7z \
800-
7za
803+
7za \
804+
7zr \
805+
7zz \
806+
7zzs
801807
$(ss) aclocal \
802808
aclocal-1.10 aclocal-1.11 aclocal-1.12 aclocal-1.13 \
803809
aclocal-1.14 aclocal-1.15 aclocal-1.16

0 commit comments

Comments
 (0)