Show the cursor if it was hidden previously. Don't forget to show the cursor at least at the end of your application. Otherwise the user might have a terminal with a permanently hidden cursor, until they reopen the terminal.
()
| 59 | // Don't forget to show the cursor at least at the end of your application. |
| 60 | // Otherwise the user might have a terminal with a permanently hidden cursor, until they reopen the terminal. |
| 61 | func Show() { |
| 62 | cursor.Show() |
| 63 | } |
| 64 | |
| 65 | // Hide the cursor. |
| 66 | // Don't forget to show the cursor at least at the end of your application with Show. |
searching dependent graphs…