From: Yu Watanabe Date: Sat, 31 Aug 2019 18:20:41 +0000 (+0900) Subject: shell-completion: do not truncate suggestions X-Git-Tag: v243~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6552c29edb1ebf4016be82a37148a583e086d4d4;p=thirdparty%2Fsystemd.git shell-completion: do not truncate suggestions --- diff --git a/shell-completion/bash/busctl b/shell-completion/bash/busctl index 3be0600b9b6..96bf9ae2901 100644 --- a/shell-completion/bash/busctl +++ b/shell-completion/bash/busctl @@ -32,7 +32,7 @@ __get_machines() { __get_busnames() { local mode=$1 local a b - busctl $mode list --no-legend --no-pager 2>/dev/null | + COLUMNS=65535 busctl $mode list --no-legend --no-pager 2>/dev/null | { while read a b; do echo " $a"; done; }; }