Replies: 1 comment 1 reply
-
What is this line for? alias z='__zoxide_z' |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm not getting
z foo<SPACE><TAB>
completions and I'm not sure why. Latest versions Zsh 5.9, Zoxide 0.9.6.My .zshrc is:
...
compinit
...
source /usr/share/fzf/completion.zsh
FZF_ALT_C_COMMAND= source /usr/share/fzf/key-bindings.zsh
...
eval "$(zoxide init zsh)"
alias z='__zoxide_z'
and I also removed
zcompdump
.I run:
I'm on Arch and the path to the completions is already in
fpath
.P.S. Unrelated, but anyone know of a tool similar to zoxide but doesn't record frequency? I would rather manually add a list of of entries and order by priority (this should make it more predictable). I could probably script something up but for a tool that's used as frequent as
cd
, I want to be sure it's the right solution and is efficient and complete with completions which I'm not sure how to write myself but can probably tweak from examples.Beta Was this translation helpful? Give feedback.
All reactions