()
| 28 | } |
| 29 | |
| 30 | function getConfig(): QodexConfig { |
| 31 | const cfg = vscode.workspace.getConfiguration('qodex'); |
| 32 | return { |
| 33 | executablePath: cfg.get<string>('executablePath') ?? 'qodex', |
| 34 | terminalName: cfg.get<string>('terminalName') ?? 'QodeX', |
| 35 | openHeadless: cfg.get<boolean>('openHeadless') ?? false, |
| 36 | }; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Find an existing QodeX terminal or create a new one. We reuse terminals so |
no test coverage detected