clearCursor turns off cursor and stops it from blinking
()
| 60 | |
| 61 | // clearCursor turns off cursor and stops it from blinking |
| 62 | func (ed *Editor) clearCursor() { |
| 63 | ed.stopCursor() |
| 64 | ed.renderCursor(false) |
| 65 | } |
| 66 | |
| 67 | // stopCursor stops the cursor from blinking |
| 68 | func (ed *Editor) stopCursor() { |
no test coverage detected