MCPcopy Create free account
hub / github.com/Acode-Foundation/Acode / AcodeClientConfig

Interface AcodeClientConfig

src/cm/lsp/types.ts:253–265  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

251}
252
253export interface AcodeClientConfig {
254 useDefaultExtensions?: boolean;
255 builtinExtensions?: BuiltinExtensionsConfig;
256 extensions?: (Extension | LSPClientExtension)[];
257 notificationHandlers?: Record<
258 string,
259 (client: LSPClient, params: unknown) => boolean
260 >;
261 workspace?: (client: LSPClient) => Workspace;
262 rootUri?: string;
263 timeout?: number;
264 highlightLanguage?: (name: string) => Language | null;
265}
266
267export interface LanguageResolverContext {
268 languageId: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected