We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8718b98 commit 2789b77Copy full SHA for 2789b77
1 file changed
packages/opencode/src/tool/lsp.ts
@@ -42,10 +42,7 @@ export const LspTool = Tool.define(
42
return {
43
description: DESCRIPTION,
44
parameters: Parameters,
45
- execute: (
46
- args: Schema.Schema.Type<typeof Parameters>,
47
- ctx: Tool.Context,
48
- ) =>
+ execute: (args: Schema.Schema.Type<typeof Parameters>, ctx: Tool.Context) =>
49
Effect.gen(function* () {
50
const file = path.isAbsolute(args.filePath) ? args.filePath : path.join(Instance.directory, args.filePath)
51
yield* assertExternalDirectoryEffect(ctx, file)
0 commit comments