(mut self, encoding: Encoding)
| 140 | /// Set the default encoding for new files. |
| 141 | #[must_use] |
| 142 | pub fn with_default_encoding(mut self, encoding: Encoding) -> Self { |
| 143 | self.default_encoding = encoding; |
| 144 | self |
| 145 | } |
| 146 | |
| 147 | /// Set maximum file size for diffing. Files larger than this are treated as binary. |
| 148 | #[must_use] |
no outgoing calls