ShowFakeCursorMulti is the same as ShowFakeCursor except it does not reset previous locations of the cursor Fake cursors are also necessary to display multiple cursors
(x, y int)
| 97 | // reset previous locations of the cursor |
| 98 | // Fake cursors are also necessary to display multiple cursors |
| 99 | func ShowFakeCursorMulti(x, y int) { |
| 100 | r, _, _, _ := Screen.GetContent(x, y) |
| 101 | Screen.SetContent(x, y, r, nil, config.DefStyle.Reverse(true)) |
| 102 | } |
| 103 | |
| 104 | // ShowCursor puts the cursor at the given location using a fake cursor |
| 105 | // if enabled or using the terminal cursor otherwise |