(x, y int, main bool)
| 370 | } |
| 371 | |
| 372 | func (w *BufWindow) showCursor(x, y int, main bool) { |
| 373 | if w.active { |
| 374 | if main { |
| 375 | screen.ShowCursor(x, y) |
| 376 | } else { |
| 377 | screen.ShowFakeCursorMulti(x, y) |
| 378 | } |
| 379 | } |
| 380 | } |
| 381 | |
| 382 | // displayBuffer draws the buffer being shown in this window on the screen.Screen |
| 383 | func (w *BufWindow) displayBuffer() { |
no test coverage detected