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

New Bookmark Command #1019

Open
wants to merge 8 commits into
base: main
Choose a base branch
from

Conversation

azaleacolburn
Copy link
Contributor

@azaleacolburn azaleacolburn commented Mar 19, 2025

Description

Adds a new subcommand called bookmark as per #1014

Usage

zoxide bookmark foo ~/bar creates a bookmark in the database called foo which aliases to bar.

Then, zoxide query foo automatically outputs ~/bar before even opening a Stream. However, it doesn't match, so zoxide query fooo ignores the bookmarking system and matches dirs on fooo.

This PR restructures the database, by turning dirs into a tuple containing the old dirs (a vector of directories) and a bookmarks hashmap. They must be under the same field so they can be serialized and deserialized together, while obeying the self_referencing struct system.

Warning

Because of this restructuring, old databases will no longer be deserializable.

However, this PR also adds additional code to the deserialize command, which will fall back on deserializing just the vector of Dirs, then reserializing the database with those dirs and an empty hashmap.
So existing zoxide instances should still operate perfectly, but old databases will be changed.

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

Successfully merging this pull request may close these issues.

1 participant