From 1bb11adee91f6d2fadb3120e1a3cd98440e535db Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Mon, 2 Apr 2001 11:23:21 +0000 Subject: moved to Completion/Zsh/Context/_in_vared --- Completion/Base/_in_vared | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100755 Completion/Base/_in_vared (limited to 'Completion/Base') diff --git a/Completion/Base/_in_vared b/Completion/Base/_in_vared deleted file mode 100755 index c21601cdf..000000000 --- a/Completion/Base/_in_vared +++ /dev/null @@ -1,35 +0,0 @@ -#compdef -vared- - -local also - -# Completion inside vared. - -if [[ $compstate[vared] = *\[* ]]; then - if [[ $compstate[vared] = *\]* ]]; then - # vared on an array-element - compstate[parameter]=${${compstate[vared]%%\]*}//\[/-} - compstate[context]=value - also=-value- - else - # vared on an array-value - compstate[parameter]=${compstate[vared]%%\[*} - compstate[context]=value - also=-value- - fi -else - # vared on a parameter, let's see if it is an array - compstate[parameter]=$compstate[vared] - if [[ ${(tP)compstate[vared]} = *(array|assoc)* ]]; then - compstate[context]=array_value - also=-array-value- - else - compstate[context]=value - also=-value- - fi -fi - -# Don't insert TAB in first column. Never. - -compstate[insert]="${compstate[insert]//tab /}" - -_compalso "$also" -- cgit 1.4.1