From a2deb3854abfa4ef29fa35ab280399b10a17161a Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Mon, 28 Jan 2002 16:34:12 +0000 Subject: slight improvement for 16500 to allow completion after ./ in all cases (16507) --- ChangeLog | 5 +++++ Completion/Zsh/Type/_command_names | 7 +------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index d072001d3..6dbde8354 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-01-28 Sven Wischnowsky + + * 16507: Completion/Zsh/Type/_command_names: slight improvement + for 16500 to allow completion after ./ in all cases + 2002-01-27 Clint Adams * 16503: Src/builtin.c: warn on fclose or fflush diff --git a/Completion/Zsh/Type/_command_names b/Completion/Zsh/Type/_command_names index 71c3adfd2..613f1fe59 100644 --- a/Completion/Zsh/Type/_command_names +++ b/Completion/Zsh/Type/_command_names @@ -10,15 +10,10 @@ defs=( 'commands:external command:compadd -k commands' ) -if [[ -n "$path[(r).]" ]]; then +[[ -n "$path[(r).]" || $PREFIX = */* ]] && defs=( "$defs[@]" 'executables:executable file or directory:_path_files -/g \*\(-\*\)' ) -else - defs=( "$defs[@]" - 'executables:executable file or directory:_files -P/ -W/ -/g \*\(-\*\)' - ) -fi if [[ "$1" = -e ]]; then shift -- cgit 1.4.1