(mut self, lines: usize)
| 216 | /// ``` |
| 217 | #[must_use] |
| 218 | pub fn context_lines(mut self, lines: usize) -> Self { |
| 219 | self.context_lines = lines; |
| 220 | self |
| 221 | } |
| 222 | |
| 223 | /// Force a whole-file replace instead of a positional diff against |
| 224 | /// `old_content`. |
no outgoing calls