1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-11-28 03:10:56 +01:00

manual/8992

This commit is contained in:
Tanaka Akira 1999-12-10 14:47:55 +00:00
parent d5d015115c
commit 188e6569db
49 changed files with 1061 additions and 699 deletions

View file

@ -2,7 +2,7 @@
local val nm="$compstate[nmatches]"
if _style -a "$1" list-colors val; then
if zstyle -a ":completion${curcontext}:$1" list-colors val; then
if [[ "$1" = default ]]; then
ZLS_COLORS="${(j.:.)${(@)val:gs/:/\\\:}}"
else
@ -10,7 +10,7 @@ if _style -a "$1" list-colors val; then
fi
fi
if _style -s "$1" list-packed val; then
if zstyle -s ":completion${curcontext}:$1" list-packed val; then
if [[ "$val" = (yes|true|1|on) ]]; then
compstate[list]="${compstate[list]} packed"
else
@ -20,7 +20,7 @@ else
compstate[list]="$_saved_list"
fi
if _style -s "$1" list-rows-first val; then
if zstyle -s ":completion${curcontext}:$1" list-rows-first val; then
if [[ "$val" = (yes|true|1|on) ]]; then
compstate[list]="${compstate[list]} rows"
else
@ -30,7 +30,7 @@ else
compstate[list]="$_saved_list"
fi
if _style -s "$1" last-prompt val; then
if zstyle -s ":completion${curcontext}:$1" last-prompt val; then
if [[ "$val" = (yes|true|1|on) ]]; then
compstate[last_prompt]=yes
else
@ -40,7 +40,7 @@ else
compstate[last_prompt]="$_saved_lastprompt"
fi
if _style -s "$1" accept-exact val; then
if zstyle -s ":completion${curcontext}:$1" accept-exact val; then
if [[ "$val" = (yes|true|1|on) ]]; then
compstate[exact]=accept
else
@ -53,7 +53,7 @@ fi
[[ _last_nmatches -ge 0 && _last_nmatches -ne nm ]] &&
_menu_style=( "$_last_menu_style[@]" "$_menu_style[@]" )
if _style -a "$1" menu val; then
if zstyle -a ":completion${curcontext}:$1" menu val; then
_last_nmatches="$nm"
_last_menu_style=( "$val[@]" )
else