(viewCol uint16, viewRow uint16)
| 185 | } |
| 186 | |
| 187 | func (buffer *Buffer) GetCell(viewCol uint16, viewRow uint16) *Cell { |
| 188 | rawLine := buffer.convertViewLineToRawLine(viewRow) |
| 189 | return buffer.getRawCell(viewCol, rawLine) |
| 190 | } |
| 191 | |
| 192 | func (buffer *Buffer) getRawCell(viewCol uint16, rawLine uint64) *Cell { |
| 193 | if rawLine >= uint64(len(buffer.lines)) { |