tij 0.4.16

Text-mode interface for Jujutsu - a TUI for jj version control
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Tij - Text-mode Interface for Jujutsu
//!
//! A TUI application for the Jujutsu version control system.
//!
//! This library provides:
//! - [`app`]: Application state and logic
//! - [`jj`]: Jujutsu command execution and parsing
//! - [`keys`]: Key binding definitions
//! - [`model`]: Domain models
//! - [`ui`]: User interface components

pub mod app;
pub mod jj;
pub mod keys;
pub mod model;
pub mod ui;