diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-06-27 12:58:06 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-06-27 12:58:06 +0200 |
commit | ea70fb1569f580074e176197ccb1cfb42b1b3b3c (patch) | |
tree | d5b5e2367b8af177cac03eece7d33f78373ae043 | |
parent | 6c1e2ec9f4a4728dd6338b2e4ea648f6b5cd59ae (diff) |
etc/modules: Seems the argument to compinit must be relative. Sigh.
-rw-r--r-- | etc/modules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/modules b/etc/modules index 67f55ec..b4f0f6b 100644 --- a/etc/modules +++ b/etc/modules @@ -1,6 +1,6 @@ ## vim:ft=zsh -autoload -Uz compinit +autoload -U compinit autoload colors autoload zargs -compinit -C -d $HOME/var/cache/zsh/compdump +compinit -C -d var/cache/zsh/compdump colors |