zoxide icon indicating copy to clipboard operation
zoxide copied to clipboard

A smarter cd command. Supports all major shells.

Results 183 zoxide issues
Sort by recently updated
recently updated
newest added

My `config.fish` contains: ```sh zoxide init fish --cmd j | source ``` This correctly redefines `j` and `ji` as the commands. However, if I try using `j query`, it works...

I'm looking for an easy way to make ambiguous directories play nice with zoxide without needing to use a different tool. There are quite a few zsh plugins for "bookmarking"...

This commit adds '-i' and '-d' options to the 'zoxide add' command. '-i' increments the base score by a specified amount. '-d' decrements the base score by a specified amount....

Resolves #344 I have tried to implement an equivalent Tab completion for PowerShell, which was to some point successful. It works like the following: - Use the default directory completion...

Use word boundary detection and give scores based on keyword matching I'm using a helper library to implement a unicode algorithm, but I'm also detecting case changes within a word...

Right now, the frequency of use determines which directory is chosen when there are multiple matches. I suggest the closeness of the match should also be used, and that should...

feature

The directory frequency should not be incremented if the user leaves the directory right away and probably did not intend to go there. This sequence should not give the first...

Currently, zoxide will fail to change into a directory that is in the current directory if you provide a shorter name, supposing that that directory has not been indexed. I...

In v0.63 of nushell, they introduced [environment change hooks](https://www.nushell.sh/blog/2022-05-24-nushell_0_63.html#hooks-jt). This means `zoxide` can listen for `PWD` changes directly: ```nu hooks: { env_change: { PWD: [{|before, after| zoxide add $after }]...

blocked

If an accent exists in a stored path (e.g. `D:\Documents\Dev\foobàr\baz`), then an error occurs, here with `z baz`: ```powershell Set-Location: Line | 17 | Set-Location -LiteralPath $dir -Passthru -ErrorAction Stop...