SetCurCursor sets the current cursor
(n int)
| 1044 | |
| 1045 | // SetCurCursor sets the current cursor |
| 1046 | func (b *Buffer) SetCurCursor(n int) { |
| 1047 | b.curCursor = n |
| 1048 | } |
| 1049 | |
| 1050 | // GetActiveCursor returns the main cursor in this buffer |
| 1051 | func (b *Buffer) GetActiveCursor() *Cursor { |
no outgoing calls