GetCursor returns the nth cursor
(n int)
| 1054 | |
| 1055 | // GetCursor returns the nth cursor |
| 1056 | func (b *Buffer) GetCursor(n int) *Cursor { |
| 1057 | return b.cursors[n] |
| 1058 | } |
| 1059 | |
| 1060 | // GetCursors returns the list of cursors in this buffer |
| 1061 | func (b *Buffer) GetCursors() []*Cursor { |
no outgoing calls
no test coverage detected