From: Ingmar Vanhassel Date: Thu, 19 Nov 2009 02:12:59 +0000 (+0100) Subject: bash-completion: Whitespace fix X-Git-Tag: 0.1~424 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=829dac9a1b4aaadcd0238f72b3bc61c9ce936110 bash-completion: Whitespace fix Signed-off-by: Ingmar Vanhassel --- diff --git a/notmuch-completion.bash b/notmuch-completion.bash index b4335fdf..ff0a24d6 100644 --- a/notmuch-completion.bash +++ b/notmuch-completion.bash @@ -53,11 +53,11 @@ _notmuch() prev=${COMP_WORDS[COMP_CWORD-1]} if [[ "$COMP_CWORD" == "1" ]]; then - COMPREPLY=( $(compgen -W "${commands}" -- ${current}) ) + COMPREPLY=( $(compgen -W "${commands}" -- ${current}) ) fi if [[ $prev = "help" && "$COMP_CWORD" == "2" ]]; then - COMPREPLY=( $(compgen -W "${help_options}" -- ${current}) ) + COMPREPLY=( $(compgen -W "${help_options}" -- ${current}) ) fi } complete -o default -o bashdefault -F _notmuch notmuch