Skip to content

Commit 6f21ef0

Browse files
committed
suggest: do not announce "Item" before each item when docs expanded
fixes microsoft#103095
1 parent caf50ae commit 6f21ef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/contrib/suggest/suggestWidget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ export class SuggestWidget implements IContentWidget, IListVirtualDelegate<Compl
618618
detail || '',
619619
documentation ? (typeof documentation === 'string' ? documentation : documentation.value) : '');
620620

621-
return nls.localize('ariaCurrenttSuggestionReadDetails', "Item {0}, docs: {1}", textLabel, docs);
621+
return nls.localize('ariaCurrenttSuggestionReadDetails', "{0}, docs: {1}", textLabel, docs);
622622
} else {
623623
return textLabel;
624624
}

0 commit comments

Comments
 (0)