From b654c6933a554d52da389f515e69509598a5b58f Mon Sep 17 00:00:00 2001 From: Lazarus Lazaridis Date: Mon, 5 Mar 2018 23:44:58 +0200 Subject: [PATCH] Add missing completion for the cleanup command. --- goto.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/goto.bash b/goto.bash index a1d42d3..ddcb416 100644 --- a/goto.bash +++ b/goto.bash @@ -195,7 +195,7 @@ function _goto_resolve_alias() # Completes the goto function with the available commands function _complete_goto_commands() { - COMPREPLY=($(compgen -W "-r --register -u --unregister -l --list" -- "$1")) + COMPREPLY=($(compgen -W "-r --register -u --unregister -l --list -c --cleanup" -- "$1")) } # Completes the goto function with the available aliases