From 27c1ca8628b03943768c8d9ebfdac1a46ec41374 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Fri, 9 Apr 2010 11:57:37 +0000 Subject: Ben: 27589: improved -redirect --- Completion/Zsh/Context/_redirect | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'Completion/Zsh') diff --git a/Completion/Zsh/Context/_redirect b/Completion/Zsh/Context/_redirect index b33e785ee..e6da5d115 100644 --- a/Completion/Zsh/Context/_redirect +++ b/Completion/Zsh/Context/_redirect @@ -6,11 +6,13 @@ _set_command strs=( -default- ) -if [[ -n "$_comp_command1" ]]; then - strs=( "${_comp_command1}" "$strs[@]" ) - [[ -n "$_comp_command2" ]] && +if [[ "$CURRENT" != "1" ]]; then + strs=( "${_comp_command}" "$strs[@]" ) + if [[ -n "$_comp_command1" ]]; then + strs=( "${_comp_command1}" "$strs[@]" ) + [[ -n "$_comp_command2" ]] && strs=( "${_comp_command2}" "$strs[@]" ) + fi fi -_dispatch -redirect-,${compstate[redirect]},${_comp_command} \ - -redirect-,{${compstate[redirect]},-default-},${^strs} +_dispatch -redirect-,{${compstate[redirect]},-default-},${^strs} -- cgit 1.4.1