mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 08:35:57 +00:00
feat: add hashline editing and TypeScript LSP
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import { getAgentDir, type ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
||||
import { deployBundleHashlineConfig } from "./hashline-config.ts";
|
||||
|
||||
/** Deploy bundle defaults before pi-hashline-edit reads its module-level config. */
|
||||
export default async function bundledHashlineExtension(pi: ExtensionAPI): Promise<void> {
|
||||
deployBundleHashlineConfig(getAgentDir());
|
||||
const { default: hashlineExtension } = await import("../node_modules/pi-hashline-edit/index.ts");
|
||||
hashlineExtension(pi);
|
||||
}
|
||||
Reference in New Issue
Block a user