git-iblame 0.8.10

Interactive enhanced `git blame` command line tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod blame_renderer;
pub(crate) use blame_renderer::*;

mod cli;
pub use cli::*;

mod command;
pub(crate) use command::*;

mod command_ui;
pub(crate) use command_ui::*;

mod command_key_map;
pub(crate) use command_key_map::*;

mod command_prompt;
pub(crate) use command_prompt::*;