Builder: set short output mode.
(mut self, short: bool)
| 217 | |
| 218 | /// Builder: set short output mode. |
| 219 | pub fn with_short(mut self, short: bool) -> Self { |
| 220 | self.short = short; |
| 221 | self |
| 222 | } |
| 223 | |
| 224 | /// Builder: set whether to hide untracked files. |
| 225 | pub fn with_no_untracked(mut self, no_untracked: bool) -> Self { |
no outgoing calls