From 912e38c9a35337bfbaf106e605b94657a1a12acf Mon Sep 17 00:00:00 2001 From: Dave Buchfuhrer Date: Sun, 22 Jul 2018 08:01:14 -0700 Subject: [PATCH] Don't use += because it's not available in zsh --- hyperjump | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperjump b/hyperjump index 4306e23..4b90b6d 100644 --- a/hyperjump +++ b/hyperjump @@ -174,7 +174,7 @@ _jj() { local list="" while read line do - local list+=" ${line%:*}" + local list="$list ${line%:*}" done < <(cat "$db") local cur=${COMP_WORDS[COMP_CWORD]}