Modified to split at :

This commit is contained in:
Atomic Coding 2018-05-22 17:21:48 -07:00 committed by GitHub
parent 65ec414b83
commit b5c1939f68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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} )); then
# Set completion colors to LS_COLORS
zstyle ':completion:*' list-colors $LS_COLORS
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
else
# 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
zstyle ':completion:*:*:cd:*' tag-order local-directories directory-stack path-directories
zstyle ':completion:*:*:cd:*:directory-stack' menu yes select