()
| 340 | } |
| 341 | |
| 342 | export function firstNonEditorColumn(): vs.ViewColumn | undefined { |
| 343 | const usedColumns = usedEditorColumns(); |
| 344 | for (let i = 1; i <= 9; i++) { |
| 345 | if (!usedColumns.has(i)) |
| 346 | return i; |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | export function firstEditorColumn(): vs.ViewColumn | undefined { |
| 351 | const usedColumns = usedEditorColumns(); |
no test coverage detected