worktree-io 0.17.6

A CLI tool to open GitHub issues as git worktree workspaces
Documentation
1
2
3
4
5
6
7
8
9
/// Options extracted from a `worktree://` deep link.
#[derive(Debug, Clone, Default)]
pub struct DeepLinkOptions {
    /// Editor override from the `editor` query param. May be a symbolic name
    /// (`cursor`, `code`, `zed`, `nvim`, etc.) or a raw percent-decoded command.
    pub editor: Option<String>,
    /// When `true` (set via `?no_hooks=1`), pre/post-open hooks are skipped.
    pub no_hooks: bool,
}