Appends the line at `line + 1` to the line at `line`.
(&mut self, line: usize)
| 133 | impl Editor { |
| 134 | /// Appends the line at `line + 1` to the line at `line`. |
| 135 | fn join_next_line_into(&mut self, line: usize) { |
| 136 | let next = self.content.remove(line + 1); |
| 137 | self.content[line].push_str(&next); |
| 138 | self.dirty = true; |
| 139 | } |
| 140 | |
| 141 | /// Rewrites the status line at the bottom of the `console`, using the previously queried |
| 142 | /// `console_size`. |
no test coverage detected