(mut self, lines: usize)
| 168 | /// Set the number of context lines. |
| 169 | #[must_use] |
| 170 | pub fn context_lines(mut self, lines: usize) -> Self { |
| 171 | self.context_lines = lines; |
| 172 | self |
| 173 | } |
| 174 | |
| 175 | /// Set the target view. If not set, uses the current view. |
| 176 | #[must_use] |
no outgoing calls