1pub mod features;
13pub mod utils;
14
15pub use features::branches::{validate_ref_name, BranchInfo, BranchType};
17pub use features::commits::CommitInfo;
18pub use features::commits::{check_commit_message, CommitMsgSeverity, COMMIT_SUBJECT_LIMIT};
19pub use features::commits::{CommitAction, CommitActionKind, COMMIT_MENU_GROUPS};
20pub use features::commits::{RefKind, RefLabel};
21pub use features::diff::{
22 blame_file, BlameLine, DiffFileEntry, DiffHunk, DiffInfo, DiffLine, FileStatus,
23 StatusColorCategory,
24};
25pub use features::editor::{open_file_default, show_in_folder, Editor, EDITOR_NAMES};
26pub use features::graph::{GraphEdge, GraphRow};
27pub use features::log::file_history;
28pub use features::persistence::{AppSettings, LayoutSettings, RepoHistoryEntry};
29pub use features::remotes::RemoteInfo;
30pub use features::repo::spawn_git_watcher;
31pub use features::repo::{
32 delete_file, load_repo_snapshot, load_repo_snapshot_with_depth, RepoInfo, RepoSnapshot,
33 RepoState,
34};
35pub use features::stash::StashEntry;
36pub use features::theme::{
37 theme_by_index, theme_index_by_name, AppTheme, Rgb, THEME_COUNT, THEME_NAMES,
38};
39pub use utils::short_oid_str;
40pub use utils::text::{path_basename, truncate_str};
41pub use utils::{
42 ascending_range, clamp_next, clamp_selection, repo_display_name, wrap_next, wrap_prev,
43};