fix: disable workspace symbol lookup to prevent LSP performance issues

This commit is contained in:
Dax Raad
2025-10-13 14:05:54 -04:00
parent 53d9717d90
commit a398013ecb

View File

@@ -1031,9 +1031,12 @@ export namespace Server {
}), }),
), ),
async (c) => { async (c) => {
/*
const query = c.req.valid("query").query const query = c.req.valid("query").query
const result = await LSP.workspaceSymbol(query) const result = await LSP.workspaceSymbol(query)
return c.json(result) return c.json(result)
*/
return c.json([])
}, },
) )
.get( .get(