]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
shell-completion: do not truncate suggestions
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 31 Aug 2019 18:20:41 +0000 (03:20 +0900)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sun, 1 Sep 2019 15:32:14 +0000 (17:32 +0200)
shell-completion/bash/busctl

index 3be0600b9b67c28cee128853409612f2e19f5839..96bf9ae290140193e7e3ab7b78ece3894c687078 100644 (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; };
 }