From cc7dab0341e820f253e3ff7fa8823f3e362ad0c7 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Wed, 20 Jan 2016 02:33:16 -0800 Subject: [PATCH] Fix problem where bash completion script would not allow user to complete file names --- bash-completion/completion/dfmt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bash-completion/completion/dfmt b/bash-completion/completion/dfmt index d21e0eb..b918e5c 100644 --- a/bash-completion/completion/dfmt +++ b/bash-completion/completion/dfmt @@ -38,6 +38,8 @@ _dfmt() return 0 ;; *) + COMPREPLY=($(compgen -f -- ${cur})) + return 0 ;; esac COMPREPLY=($(compgen -W "${opts}" -- ${cur}))