diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-02-15 12:00:17 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-02-15 12:00:17 +0100 |
commit | 20cb4ba71c808470008bdd33c3b4f9364947cad7 (patch) | |
tree | 23c6bb7980859c3b3a9ec5cee0e7358d83537508 /etc/completion | |
parent | e11c1d5916c27c2fc257bb700bfe32a046db7789 (diff) |
still more comments
Diffstat (limited to 'etc/completion')
-rw-r--r-- | etc/completion | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/completion b/etc/completion index 09031ca..91b9c47 100644 --- a/etc/completion +++ b/etc/completion @@ -4,6 +4,7 @@ zstyle :compinstall filename ~/.zshrc zstyle ':completion:*' cache-path ~/var/cache/zsh zstyle ':completion:*' use-cache true +# Use ls-colors for file completion check_com -c dircolors && zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} # Mark the current selection when tabbing through possible completions @@ -27,10 +28,11 @@ zstyle ':completion:*:warnings' format \ zstyle ':completion:*' group-name '' unset char -# program-specific settings +# Force menu completion since the input is just a stupid number zstyle ':completion:*:*:kill:*' menu yes zstyle ':completion:*:*:(todo|td*):*:items' menu yes +# $hosts is set from the hosts package zstyle -e ':completion:*' hosts 'reply=(${(k)hosts})' if [[ -r $compdump ]] { |