()
| 348 | } |
| 349 | |
| 350 | export function firstEditorColumn(): vs.ViewColumn | undefined { |
| 351 | const usedColumns = usedEditorColumns(); |
| 352 | for (let i = 1; i <= 9; i++) { |
| 353 | if (usedColumns.has(i)) |
| 354 | return i; |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | export function createWatcher(pattern: string, emitter: EventEmitter<vs.Uri | void>) { |
| 359 | const watcher = vs.workspace.createFileSystemWatcher(pattern); |
no test coverage detected