Hide untracked files.
(mut self)
| 571 | |
| 572 | /// Hide untracked files. |
| 573 | pub fn hide_untracked(mut self) -> Self { |
| 574 | self.no_untracked = true; |
| 575 | self |
| 576 | } |
| 577 | |
| 578 | /// Filter to a specific path prefix. |
| 579 | pub fn filter_path(mut self, path: impl Into<String>) -> Self { |
no outgoing calls