()
| 336 | export const envUtils = new EnvUtils(); |
| 337 | |
| 338 | function usedEditorColumns(): Set<number> { |
| 339 | return new Set(vs.window.visibleTextEditors.map((e) => e.viewColumn).filter(notUndefined)); |
| 340 | } |
| 341 | |
| 342 | export function firstNonEditorColumn(): vs.ViewColumn | undefined { |
| 343 | const usedColumns = usedEditorColumns(); |
no outgoing calls
no test coverage detected