summaryrefslogtreecommitdiff
path: root/internal/hexailsp
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-09-07 14:39:22 +0300
committerPaul Buetow <paul@buetow.org>2025-09-07 14:39:22 +0300
commit4c93677c79983560eea13c372a20ed78f02af4f9 (patch)
tree5002ece7e13b8fafb54325ec29f1ae69151ea8a9 /internal/hexailsp
parent90e586831c0351fb5808ef5c1eca0692178731c9 (diff)
feat: add 'Simplify and improve' action; configurable prompts in config; wire into LSP and TUI
Diffstat (limited to 'internal/hexailsp')
-rw-r--r--internal/hexailsp/run.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/hexailsp/run.go b/internal/hexailsp/run.go
index 72cf902..e3dfb28 100644
--- a/internal/hexailsp/run.go
+++ b/internal/hexailsp/run.go
@@ -140,5 +140,7 @@ func makeServerOptions(cfg appconfig.App, logContext bool, client llm.Client) ls
PromptDocumentUser: cfg.PromptCodeActionDocumentUser,
PromptGoTestSystem: cfg.PromptCodeActionGoTestSystem,
PromptGoTestUser: cfg.PromptCodeActionGoTestUser,
+ PromptSimplifySystem: cfg.PromptCodeActionSimplifySystem,
+ PromptSimplifyUser: cfg.PromptCodeActionSimplifyUser,
}
}