@@ -13,6 +13,11 @@ Please send Shepherd bug reports to bug-guix@gnu.org.
* Changes in 0.10.2
+** New Bash completion
+
+A Bash completion file is now installed, providing tab completion for the
+‘herd’ command.
+
** ‘herd’ shows a hint when the service and action are likely swapped
The hint is printed for instance when typing ‘herd foobar start’.
@@ -44,8 +44,8 @@ _herd_complete_3()
local command="${COMP_WORDS[2]}"
case "$command" in
guix-daemon)
- complitions="on off"
- mapfile -t COMPREPLY < <(compgen -W "$complitions" -- "${COMP_WORDS[$COMP_CWORD]}")
+ completions="on off"
+ mapfile -t COMPREPLY < <(compgen -W "$completions" -- "${COMP_WORDS[$COMP_CWORD]}")
;;
*)
;;