mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-21 17:54:23 +01:00
fix: disable workspace symbol lookup to prevent LSP performance issues
This commit is contained in:
@@ -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(
|
||||||
|
|||||||
Reference in New Issue
Block a user