From: Karel Zak Date: Tue, 25 Aug 2020 12:23:28 +0000 (+0200) Subject: bash-completion: add column --table-columns-limit X-Git-Tag: v2.37-rc1~505 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d3f21dca1e4612cfd90e7a06dfabd6c767736ae6;p=thirdparty%2Futil-linux.git bash-completion: add column --table-columns-limit Signed-off-by: Karel Zak --- diff --git a/bash-completion/column b/bash-completion/column index c5a998b6e1..1f47aecc85 100644 --- a/bash-completion/column +++ b/bash-completion/column @@ -5,7 +5,7 @@ _column_module() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" case $prev in - '-c'|'--output-width') + '-c'|'--output-width'|'-l'|'--table-columns-limit') COMPREPLY=( $(compgen -W "number" -- $cur) ) return 0 ;; @@ -32,6 +32,7 @@ _column_module() --table-name --table-order --table-columns + --table-columns-limit --table-noextreme --table-noheadings --table-header-repeat