From 9252634c75402abd32dd3840df3ed49cae3704c8 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Sat, 23 Sep 2023 17:48:37 -0500 Subject: [PATCH] home | fix quoting in doas.sh --- home/bash_complition.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/bash_complition.nix b/home/bash_complition.nix index 3385b7f..4a00932 100644 --- a/home/bash_complition.nix +++ b/home/bash_complition.nix @@ -35,7 +35,7 @@ if [[ ''$cur == -* ]]; then local opts=''$(_parse_help "''$1") - COMPREPLY=(''$(compgen -W ''${opts:-''$(_parse_usage "''$1")}' -- "''$cur")) + COMPREPLY=(''$(compgen -W ' ''${opts:-''$(_parse_usage "''$1")}' -- "''$cur")) [[ ''${COMPREPLY-} == *= ]] && compopt -o nospace return fi