SetTarget sets to output target of the default curser to the provided cursor.Writer (wrapping io.Writer).
(w Writer)
| 21 | // SetTarget sets to output target of the default curser to the |
| 22 | // provided cursor.Writer (wrapping io.Writer). |
| 23 | func SetTarget(w Writer) { |
| 24 | cursor = cursor.WithWriter(w) |
| 25 | } |
| 26 | |
| 27 | // Up moves the cursor n lines up relative to the current position. |
| 28 | func Up(n int) { |
searching dependent graphs…