You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
z temp is returning /path/template-project.
It is desired that it instead returns /path/temporary
The current solution from what I found:
Enter the zoxide edit UI and manually increase the rank of /path/temporary until it is above /path/template-project
This is a bit clunky because it requires
using a separate 'long' command to open the TUI
manually finding both of the paths in question in the (huge) list
manually increasing the rank until it matches
A more desirable flow for this situation:
Some way to specify the query and the path that is desired to be the topmost. Zoxide would then automatically
determine the score of the top result for the query
bump the given path to be greater than the found score
If feasible with the TUI library, a nice way of accomplishing this would be to have a specific hotkey (e.g. shift-enter) in the interactive query zi to bump the selected entry to the top of the current query.
This solution is desirable because
It uses an existing command (with a short alias) which is already part of the existing natural flow in this situation
z navigates to wrong directory -> use zi to pick the correct one (+ now: have the option to effectively persist this choice)
It doesn't require the user to specify the full path to bump (vs a cli solution such as zoxide bump <query> <path>)
Please let me know if I have missed something and there is already an easier way than the current solution as I wrote it.
The text was updated successfully, but these errors were encountered:
The situation:
z temp
is returning/path/template-project
.It is desired that it instead returns
/path/temporary
The current solution from what I found:
Enter the
zoxide edit
UI and manually increase the rank of/path/temporary
until it is above/path/template-project
This is a bit clunky because it requires
A more desirable flow for this situation:
Some way to specify the query and the path that is desired to be the topmost. Zoxide would then automatically
If feasible with the TUI library, a nice way of accomplishing this would be to have a specific hotkey (e.g. shift-enter) in the interactive query
zi
to bump the selected entry to the top of the current query.This solution is desirable because
z
navigates to wrong directory -> usezi
to pick the correct one (+ now: have the option to effectively persist this choice)zoxide bump <query> <path>
)Please let me know if I have missed something and there is already an easier way than the current solution as I wrote it.
The text was updated successfully, but these errors were encountered: