shell-completion: do not truncate suggestions

This commit is contained in:
Yu Watanabe 2019-09-01 03:20:41 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent f8c2e4b926
commit 6552c29edb
1 changed files with 1 additions and 1 deletions

View File

@ -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; };
}