]> git.notmuchmail.org Git - notmuch/commitdiff
bash-completion: Whitespace fix
authorIngmar Vanhassel <ingmar@exherbo.org>
Thu, 19 Nov 2009 02:12:59 +0000 (03:12 +0100)
committerCarl Worth <cworth@cworth.org>
Thu, 19 Nov 2009 10:31:44 +0000 (11:31 +0100)
Signed-off-by: Ingmar Vanhassel <ingmar@exherbo.org>
notmuch-completion.bash

index b4335fdf31fc93cc54d62179220352d5020c27b6..ff0a24d60cbfe5f095ba41dfdd6a07e270db2b86 100644 (file)
@@ -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