From 0d5b9b8ab109200311ffb211535a999b57a4673e Mon Sep 17 00:00:00 2001 From: Ville Skyttä Date: Sun, 7 Apr 2013 11:12:08 +0300 Subject: bash-completion: Don't offer short options where corresponding long one exists. Users who know the short options can just hit the short option instead of tab, and it's not likely that it would be helpful to present a list of single character options to users who don't know them, doing so just unnecessarily trashes the list of suggestions. Signed-off-by: Ville Skyttä --- bash-completion/addpart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bash-completion/addpart') diff --git a/bash-completion/addpart b/bash-completion/addpart index b6f119a75..2b1e6bb5e 100644 --- a/bash-completion/addpart +++ b/bash-completion/addpart @@ -7,7 +7,7 @@ _addpart_module() 1) local DEVS='' while read dev; do DEVS+="$dev " ; done < <(lsblk -pnro name) - OPTS="-h --help -V --version $DEVS" + OPTS="--help --version $DEVS" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) ;; 2) -- cgit v1.2.3-55-g7522