mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
6 lines
105 B
Rust
6 lines
105 B
Rust
use git2::Status;
|
|
|
|
///
|
|
pub fn on_index(s:&Status)->bool{
|
|
s.is_index_new() || s.is_index_modified()
|
|
}
|