Hide the cursor. Don't forget to show the cursor at least at the end of your application with Show. Otherwise the user might have a terminal with a permanently hidden cursor, until they reopen the terminal.
()
| 66 | // Don't forget to show the cursor at least at the end of your application with Show. |
| 67 | // Otherwise the user might have a terminal with a permanently hidden cursor, until they reopen the terminal. |
| 68 | func Hide() { |
| 69 | cursor.Hide() |
| 70 | } |
| 71 | |
| 72 | // ClearLine clears the current line and moves the cursor to it's start position. |
| 73 | func ClearLine() { |
searching dependent graphs…