Modified to split at :
This commit is contained in:
parent
65ec414b83
commit
b5c1939f68
1 changed files with 2 additions and 2 deletions
|
@ -62,10 +62,10 @@ zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' '+r:|?=**'
|
||||||
# If LS_COLORS is set, just use it
|
# If LS_COLORS is set, just use it
|
||||||
if (( ${+LS_COLORS} )); then
|
if (( ${+LS_COLORS} )); then
|
||||||
# Set completion colors to LS_COLORS
|
# Set completion colors to LS_COLORS
|
||||||
zstyle ':completion:*' list-colors $LS_COLORS
|
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
|
||||||
else
|
else
|
||||||
# Fallback to default LS_COLORS
|
# Fallback to default LS_COLORS
|
||||||
zstyle ':completion:*' list-colors 'di=1;34:ln=35:so=32:pi=33:ex=31:bd=1;36:cd=1;33:su=30;41:sg=30;46:tw=30;42:ow=30;43'
|
zstyle ':completion:*' list-colors ${(s.:.)di=1;34:ln=35:so=32:pi=33:ex=31:bd=1;36:cd=1;33:su=30;41:sg=30;46:tw=30;42:ow=30;43}
|
||||||
fi
|
fi
|
||||||
zstyle ':completion:*:*:cd:*' tag-order local-directories directory-stack path-directories
|
zstyle ':completion:*:*:cd:*' tag-order local-directories directory-stack path-directories
|
||||||
zstyle ':completion:*:*:cd:*:directory-stack' menu yes select
|
zstyle ':completion:*:*:cd:*:directory-stack' menu yes select
|
||||||
|
|
Loading…
Reference in a new issue