MCPcopy Create free account
hub / github.com/QodeXcli/QodeX / getConfig

Function getConfig

vscode-extension/src/extension.ts:30–37  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

28}
29
30function 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

Callers 8

getOrCreateTerminalFunction · 0.85
openInTerminalFunction · 0.85
askAboutSelectionFunction · 0.85
editCurrentFileFunction · 0.85
runPlanFunction · 0.85
networkDiagFunction · 0.85
fixDiagnosticsFunction · 0.85
explainDiagnosticFunction · 0.85

Calls 1

getMethod · 0.45

Tested by

no test coverage detected