From 092652424fab8004907f87472cc795fb527ee20b Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 12 Oct 2013 20:55:58 +1300 Subject: Use default completion on empty COMPREPLY --- bash/bashrc.d/ftp.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bash/bashrc.d/ftp.bash') diff --git a/bash/bashrc.d/ftp.bash b/bash/bashrc.d/ftp.bash index e46cc474..04518b5f 100644 --- a/bash/bashrc.d/ftp.bash +++ b/bash/bashrc.d/ftp.bash @@ -5,6 +5,7 @@ _ftp() { # Bail if the .netrc file is illegible local netrc=$HOME/.netrc if [[ ! -r $netrc ]]; then + COMPREPLY=() return 1 fi @@ -27,5 +28,5 @@ _ftp() { # Generate completion reply COMPREPLY=( $(compgen -W "${machines[*]}" -- "$word") ) } -complete -F _ftp ftp +complete -F _ftp -o default ftp -- cgit v1.2.3