We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfefa47 commit 59362dfCopy full SHA for 59362df
1 file changed
extensions/VSCode/src/extension.ts
@@ -452,7 +452,12 @@ export const activate = (context: vscode.ExtensionContext) => {
452
cursor_position,
453
),
454
];
455
- ignore_selection_change = false;
+ // I'd prefer to set `ignore_selection_change =
456
+ // false` here, but even doing so after a
457
+ // `setTimeout(..., 0)` doesn't work; evidently,
458
+ // the event is generated at some later time.
459
+ // Instead, depend on the event to always clear
460
+ // this flag (a source of potential bugs).
461
}
462
await sendResult(id);
463
break;
0 commit comments