diff options
Diffstat (limited to 'app_completion')
-rw-r--r-- | app_completion | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app_completion b/app_completion index 4e62bbc..55597c1 100644 --- a/app_completion +++ b/app_completion @@ -65,7 +65,7 @@ _complete_appsh() { then opts="-n $opts" fi - COMPREPLY=($(compgen -W "${opts}" -- ${cur})) + COMPREPLY=($(compgen -W "${opts}" -- ${cur})) return 0 fi @@ -116,7 +116,7 @@ _complete_appsh() { ;; esac - COMPREPLY=($(compgen -W "${opts}" -- ${cur})) + COMPREPLY=($(compgen -W "${opts}" -- ${cur})) set +x } |