From d3f21dca1e4612cfd90e7a06dfabd6c767736ae6 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 25 Aug 2020 14:23:28 +0200 Subject: [PATCH] bash-completion: add column --table-columns-limit Signed-off-by: Karel Zak --- bash-completion/column | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.47.2