diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/completion/be.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/completion/be.bash b/misc/completion/be.bash index 834bf25..1d3a941 100644 --- a/misc/completion/be.bash +++ b/misc/completion/be.bash @@ -32,7 +32,7 @@ _be() for i in `seq $COMP_CWORD ${#COMP_WORDS[@]}`; do unset COMP_WORDS[$i]; done - COMPREPLY=( $( compgen -W "$(be "${COMP_WORDS[@]}" --complete $cur)" -- $cur ) ) + COMPREPLY=( $( IFS=$'\n' compgen -W "$(be "${COMP_WORDS[@]}" --complete $cur)" -- $cur ) ) fi } |