How to change the order of $FPATH? #220
-
Hi, I have put the following lines into my .zshrc file,
and this would result in the following
Due to the outdated Any help that how to change the order of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Don't use znap clone clarketm/zsh-completions conda-incubator/conda-zsh-completion
fpath=(
~[conda-incubator/conda-zsh-completion]
~[clarketm/zsh-completions]/src
$fpath
) This gives you full control of what goes in your |
Beta Was this translation helpful? Give feedback.
Don't use
znap source
for completions or other kinds of functions. Do something like this instead:This gives you full control of what goes in your
$fpath
and where.