aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_completion.d/sd.bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-01 02:19:46 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-01 02:19:46 +1300
commit626593c3712531c251c69be2e561a34da98cdcdf (patch)
tree273665cf1dcc5953ae0f7c324576015def43d630 /bash/bash_completion.d/sd.bash
parentUse simpler method of no case completion check (diff)
downloaddotfiles-626593c3712531c251c69be2e561a34da98cdcdf.tar.gz
dotfiles-626593c3712531c251c69be2e561a34da98cdcdf.zip
Remove null-result guard from completion gens
I don't believe these are needed anymore, or possibly ever were.
Diffstat (limited to 'bash/bash_completion.d/sd.bash')
-rw-r--r--bash/bash_completion.d/sd.bash10
1 files changed, 2 insertions, 8 deletions
diff --git a/bash/bash_completion.d/sd.bash b/bash/bash_completion.d/sd.bash
index 9694de1f..2d2d8f22 100644
--- a/bash/bash_completion.d/sd.bash
+++ b/bash/bash_completion.d/sd.bash
@@ -41,14 +41,8 @@ _sd() {
sibs[${#sibs[@]}]=$dirname
done
- # Print quoted sibs, null-delimited, if there was at least one;
- # otherwise, just print a null character to stop this hanging in Bash
- # 4.4
- if ((${#sibs[@]})) ; then
- printf '%q\0' "${sibs[@]}"
- else
- printf '\0'
- fi
+ # Print quoted sibling directories, null-delimited
+ printf '%q\0' "${sibs[@]}"
)
}
complete -F _sd sd