From ca59e01e39767e8a4b77c3c13cb311c722930f48 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ville=20Skytt=C3=A4?= Date: Fri, 16 Apr 2021 22:08:48 +0300 Subject: [PATCH] bash-completion: (lsblk) fix -E/-M arg (non-)completion MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Ville Skyttä --- bash-completion/lsblk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash-completion/lsblk b/bash-completion/lsblk index 998d99ea00..731ef3f409 100644 --- a/bash-completion/lsblk +++ b/bash-completion/lsblk @@ -31,7 +31,7 @@ _lsblk_module() COMPREPLY=( $(compgen -P "$prefix" -W "${MAJOR:-""}" -S ',' -- $realcur) ) return 0 ;; - '-o'|'--output'|'-M'|'--dedup') + '-o'|'--output'|'-E'|'--dedup') local prefix realcur LSBLK_COLS realcur="${cur##*,}" prefix="${cur%$realcur}" -- 2.47.2