Skip to content

Commit

Permalink
fix: don't add image height twice (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
benlubas authored Dec 27, 2023
1 parent eb0bcd8 commit 8a661e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rplugin/python3/molten/outputbuffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def build_output_text(self, shape, buf: int, virtual: bool) -> Tuple[List[str],
lines = []

lines.insert(0, self._get_header_text(self.output))
return lines, lineno + virtual_lines
return lines, lineno

def show_virtual_output(self, anchor: Position) -> None:
if self.displayed_status == OutputStatus.DONE and self.virt_text_id is not None:
Expand Down

0 comments on commit 8a661e7

Please sign in to comment.