zsh-z icon indicating copy to clipboard operation
zsh-z copied to clipboard

Jump quickly to directories that you have visited "frecently." A native Zsh port of z.sh with added features.

Results 21 zsh-z issues
Sort by recently updated
recently updated
newest added

The variable `ZSHZ_DATA` is unset (at its default `~/.z`). I've had `.z` in my home directory. Its contents are populated with directories. Today a new file was created in home:...

Making the extension XDG compliant should be pretty straightforward: Simply replace `local datafile=${ZSHZ_DATA:-${_Z_DATA:-${HOME}/.z}}` with `local datafile=${ZSHZ_DATA:-${_Z_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/zsh/z}}` (not tested). Implementing it in a backwards-compatible way is a bit less straightforward though:...

Since I've written a script that does `zshz --add $PWD` for all of the source code repos I have to engage with, and set `ZSHZ_MAX_SCORE=0`, `zshz` has been better than...

I work with hundreds of different Git repositories, but often won't do anything in a particular repository for several months at a time. By the time I need to `z...

Let me know if this already exists, but I couldn't see it in your examples. It'd be great if we could specify fragments that match parts of the path. Hypothetical...

As always, thank you @agkozak for making the pure-Zsh port of Z. One of the things I tend to butt up against that is that the "frecency" prefers top matches...

I use zsh-z primarily to jump between various directories that are tracked as git repositories. Occasionally, there will be a higher-'frecency' match that is a subpath of some repository, when...

Not sure to what extent the original `z` supports regular expressions, but I miss having the ability to add `$` to the end to ensure the directory ends in the...

I often find myself doing commands like this ` cd ../../../../../ ` Is there a shortcut I can use that will cd ../ n times? `z 5`

## Environment - OS: Mac OS 12.7.1 - Zsh version: zsh 5.8.1 (x86_64-apple-darwin21.0) ## Description A delay of 2-3 seconds occurs in the shell prompt after using the `z` command...