diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-08-28 23:29:56 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-08-28 23:29:56 +0200 |
commit | d0c92e27c0db4f86a806063b365734304874ceee (patch) | |
tree | 10dcb22729957db2c8e79708ca62c7ead07c7151 /etc | |
parent | 8180eb72506cc00a19548d2bcb4f6d94581f9d20 (diff) |
completion: Don't use eval fuckup when setting hosts
Diffstat (limited to 'etc')
-rw-r--r-- | etc/completion | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/completion b/etc/completion index 13b8217..15db625 100644 --- a/etc/completion +++ b/etc/completion @@ -43,7 +43,7 @@ zstyle ':completion:*:manuals' separate-sections true zstyle ':completion:*:manuals.*' insert-sections true # $hosts is set from the hosts package -zstyle -e ':completion:*' hosts 'reply=(${(k)hosts})' +zstyle ':completion:*' hosts ${(k)hosts} compinit -C -d $compdump |