Skip to content

Commit 9754a76

Browse files
committed
fix debug command
1 parent e57c7ef commit 9754a76

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

client/src/commands/dump_debug.ts

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,7 @@ export const dumpDebug = async (
192192

193193
switch (callType.command) {
194194
case "completion": {
195-
opts.push(
196-
filePath,
197-
line.toString(),
198-
character.toString(),
199-
currentFile,
200-
"true"
201-
);
195+
opts.push(filePath, line.toString(), character.toString(), currentFile);
202196
break;
203197
}
204198
case "definition": {
@@ -214,13 +208,7 @@ export const dumpDebug = async (
214208
break;
215209
}
216210
case "hover": {
217-
opts.push(
218-
filePath,
219-
line.toString(),
220-
character.toString(),
221-
currentFile,
222-
"true"
223-
);
211+
opts.push(filePath, line.toString(), character.toString(), currentFile);
224212
break;
225213
}
226214
case "signatureHelp": {

0 commit comments

Comments
 (0)