diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-07-25 12:18:23 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-07-25 12:18:23 +0000 |
commit | c83d16f8ee5721de1da3e8449c30a31ca1372d28 (patch) | |
tree | af5c704f6d02ad081058ff0428abedbe180dbabf /Completion/Zsh/Context/_subscript | |
parent | e1708022d206dfe183bbce3d03c7e5e02abc3a59 (diff) | |
download | zsh-c83d16f8ee5721de1da3e8449c30a31ca1372d28.tar.gz zsh-c83d16f8ee5721de1da3e8449c30a31ca1372d28.tar.xz zsh-c83d16f8ee5721de1da3e8449c30a31ca1372d28.zip |
another fix for 15477 (separator strings); add list-separator style (15484)
Diffstat (limited to 'Completion/Zsh/Context/_subscript')
-rw-r--r-- | Completion/Zsh/Context/_subscript | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Completion/Zsh/Context/_subscript b/Completion/Zsh/Context/_subscript index 224fbb148..6328ba10d 100644 --- a/Completion/Zsh/Context/_subscript +++ b/Completion/Zsh/Context/_subscript @@ -1,6 +1,6 @@ #compdef -subscript- -local expl ind osuf=']' flags +local expl ind osuf=']' flags sep if [[ "$1" = -q ]]; then osuf='] ' @@ -91,7 +91,8 @@ elif [[ ${(Pt)${compstate[parameter]}} = array* ]]; then list=( "$list[@]" '' ) fi done - zformat -a list ' -- ' "$list[@]" + zstyle -s ":completion:${curcontext}:indexes" list-separator sep || sep=-- + zformat -a list " $sep " "$list[@]" disp=( -d list) else disp=() |