From c040baae118787cd0573e5b674a2a225f36d898c Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 27 May 2025 02:17:35 -0400 Subject: Refactor LSP tools and add hover functionality MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Split diagnostics tool into separate lsp-diagnostics.ts file - Add new lsp-hover.ts tool for LSP hover information - Update tool exports and session integration - Remove old diagnostics.ts file 🤖 Generated with opencode Co-Authored-By: opencode --- js/src/tool/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'js/src/tool/index.ts') diff --git a/js/src/tool/index.ts b/js/src/tool/index.ts index b18f85012..3930c87c4 100644 --- a/js/src/tool/index.ts +++ b/js/src/tool/index.ts @@ -5,4 +5,5 @@ export * from "./glob"; export * from "./grep"; export * from "./view"; export * from "./ls"; -export * from "./diagnostics"; +export * from "./lsp-diagnostics"; +export * from "./lsp-hover"; -- cgit v1.2.3