ZIm/crates/jj/src/jj.rs
Marshall Bowers dd3956eaf1
Add a picker for jj bookmark list (#30883)
This PR adds a new picker for viewing a list of jj bookmarks, like you
would with `jj bookmark list`.

This is an exploration around what it would look like to begin adding
some dedicated jj features to Zed.

This is behind the `jj-ui` feature flag.

Release Notes:

- N/A
2025-05-17 16:42:45 +00:00

5 lines
81 B
Rust

mod jj_repository;
mod jj_store;
pub use jj_repository::*;
pub use jj_store::*;