Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions etc/zsh/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -3367,6 +3367,11 @@ function simple-extract () {
;;
*7z)
DECOMP_CMD="7z x"
if ! check_com 7z; then
if check_com "7zz"; then DECOMP_CMD="7zz x"
elif check_com "7zr"; then DECOMP_CMD="7zr x"
fi
fi
USES_STDIN=false
USES_STDOUT=false
;;
Expand Down