(self)
| 190 | def goto(self, row, col): |
| 191 | self.wr(Editor.TERMCMD[0].format(row=row + 1, col=col + 1)) |
| 192 | def clear_to_eol(self): |
| 193 | self.wr(Editor.TERMCMD[1]) |
| 194 | def cursor(self, onoff): |
| 195 | self.wr(Editor.TERMCMD[2] if onoff else Editor.TERMCMD[3]) |
| 196 | def hilite(self, mode): |
no test coverage detected