Combine assignment of $_Z_DATA, $Z_DATA or $HOME/.z

Co-authored-by: luukvbaal <31730729+luukvbaal@users.noreply.github.com>
This commit is contained in:
Max Schillinger 2021-09-26 23:17:51 +02:00 committed by GitHub
parent f39ee39a36
commit 1c9ecd781c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -43,8 +43,7 @@ elif type zoxide >/dev/null 2>&1; then
fi
else
# rupa/z uses $_Z_DATA, jethrokuan/z (=port of z for fish) uses $Z_DATA
datafile="${_Z_DATA:-$Z_DATA}"
datafile="${datafile:-$HOME/.z}"
datafile="${_Z_DATA:-${Z_DATA:-$HOME/.z}}"
if type fzf >/dev/null 2>&1 && [ -f "$datafile" ]; then
# Read the data from z's file instead of calling
# z so the data doesn't need to be processed twice