Skip to content

indexClient

Desktop extension entrypoint (referenced by main in package.json).

On activation, regenerates the theme JSON files from the current user settings and prompts for a reload if the output has changed. Registers a configuration change listener to repeat this process whenever the user modifies a humanualsTheme.* setting.

activate(): Promise<void>

Defined in: indexClient.ts:31

VS Code extension activation hook.

Called once when the extension loads. Writes the theme and prompts for reload if needed, then registers the configuration change listener.

Promise<void>


deactivate(): void

Defined in: indexClient.ts:49

VS Code extension deactivation hook.

No cleanup required for this extension.

void