Skip to content

Commit 17f02a4

Browse files
committed
rename suggestions: notify when rename suggestions arrive
1 parent fa6c148 commit 17f02a4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/vs/editor/contrib/rename/browser/renameInputField.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import { addDisposableListener, getClientArea, getDomNodePagePosition, getTotalHeight, getTotalWidth } from 'vs/base/browser/dom';
7+
import * as aria from 'vs/base/browser/ui/aria/aria';
78
import { renderIcon } from 'vs/base/browser/ui/iconLabel/iconLabels';
89
import { IListRenderer, IListVirtualDelegate } from 'vs/base/browser/ui/list/list';
910
import { List } from 'vs/base/browser/ui/list/listWidget';
@@ -530,6 +531,8 @@ class CandidatesView {
530531
// adjust list container layout
531532
this._listContainer.style.height = `${height}px`;
532533
this._listContainer.style.width = `${width}px`;
534+
535+
aria.status(localize('renameSuggestionsReceivedAria', "Received {0} rename suggestions", candidates.length));
533536
}
534537

535538
public clearCandidates(): void {

0 commit comments

Comments
 (0)