Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot edit paths in the zoxide database #916

Open
roobre opened this issue Oct 8, 2024 · 1 comment
Open

Cannot edit paths in the zoxide database #916

roobre opened this issue Oct 8, 2024 · 1 comment

Comments

@roobre
Copy link

roobre commented Oct 8, 2024

I recently renamed my home folder (e.g. from /home/old to /home/new). Unfortunately this rendered my precious zoxide database useless.

I'd like to be able to replace occurrences of /home/old to /home/new in the zoxide database, but I haven't figured out how.

What I've tried:

  • sed -i s/old/new/g ~/.local/share/zoxide/db.zo. This breaks the database (understandably).
  • zoxide edit. Doesn't seem to provide a way to actually edit paths, just scores.
  • zoxide import. This sounded promising, but there is no zoxide export.

Something that allows editing the db as a plaintext file would be amazing for these cases.

@roobre
Copy link
Author

roobre commented Oct 8, 2024

For now I've worked around this in (probably) the worst way possible:

z () {
	__zoxide_z "$@"
	cwd=$(pwd)
	if [[ $cwd =~ "/home/old/*" ]]
	then
		zoxide remove "$cwd"
		cwd=${cwd/old/new}
		zoxide add "$cwd"
		cd "$cwd"
	fi
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant