We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b5eed1 commit 53c76d3Copy full SHA for 53c76d3
packages/cursorless-vscode/src/ScopeTreeProvider.ts
@@ -222,12 +222,13 @@ class ScopeSupportTreeItem extends TreeItem {
222
isVisualized: boolean,
223
) {
224
let label: string;
225
- let tooltip: string | undefined;
+ let tooltip: string;
226
227
if (scopeTypeInfo.spokenForm.type === "success") {
228
label = scopeTypeInfo.spokenForm.spokenForms
229
.map((spokenForm) => `"${spokenForm}"`)
230
.join(" | ");
231
+ tooltip = label;
232
} else {
233
label = "-";
234
tooltip = scopeTypeInfo.spokenForm.requiresTalonUpdate
0 commit comments