(chars: string[])
| 63 | } |
| 64 | |
| 65 | function stringArrayToRow(chars: string[]): IBufferLine { |
| 66 | const line = new BufferLine(chars.length); |
| 67 | chars.map((c, idx) => line.setCell(idx, CellData.fromCharData([0, c, 1, c.charCodeAt(0)]))); |
| 68 | return line; |
| 69 | } |
| 70 | |
| 71 | describe('_selectWordAt', () => { |
| 72 | it('should expand selection for normal width chars', () => { |
no test coverage detected