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 fd25f66..4e62bbc 100644 --- a/app_completion +++ b/app_completion @@ -89,7 +89,7 @@ _complete_appsh() { return ;; -u) - COMPREPLY=($(compgen -f -- ${cur})) + COMPREPLY=($(compgen -o filenames -f -- ${cur})) return ;; esac @@ -120,4 +120,4 @@ _complete_appsh() { set +x } -complete -d -F _complete_appsh app +complete -F _complete_appsh app |