Skip to content

Commit

Permalink
I mark on git ignored files when git file infos are shown
Browse files Browse the repository at this point in the history
Fix #916
  • Loading branch information
Canop committed Jul 27, 2024
1 parent 1f99401 commit e62d586
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/git/status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ use {
};

const INTERESTING: Status = Status::from_bits_truncate(
Status::WT_NEW.bits() | Status::CONFLICTED.bits() | Status::WT_MODIFIED.bits(),
Status::WT_NEW.bits()
| Status::CONFLICTED.bits()
| Status::WT_MODIFIED.bits()
| Status::IGNORED.bits()
);

/// A git status
Expand Down

0 comments on commit e62d586

Please sign in to comment.