(self)
| 1859 | self.update_completion() |
| 1860 | |
| 1861 | def __repr__(self): |
| 1862 | return f"""<{type(self)} |
| 1863 | cursor_offset: {self.cursor_offset} |
| 1864 | num display lines: {len(self.display_lines)} |
| 1865 | lines scrolled down: {self.scroll_offset} |
| 1866 | >""" |
| 1867 | |
| 1868 | def _get_current_line(self) -> str: |
| 1869 | """The current line""" |
nothing calls this directly
no outgoing calls
no test coverage detected