(mut self, lines: usize)
| 183 | /// Set the number of context lines. |
| 184 | #[must_use] |
| 185 | pub fn context_lines(mut self, lines: usize) -> Self { |
| 186 | self.context_lines = lines; |
| 187 | self |
| 188 | } |
| 189 | |
| 190 | /// Set the target view. If not set, uses the current view. |
| 191 | #[must_use] |
no outgoing calls