mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 22:41:31 +01:00
Revert "home, end in suggest"
This reverts commit 82211b4d3d.
fixes #10423
This commit is contained in:
@@ -376,16 +376,6 @@ export class List<T> implements IDisposable {
|
||||
}
|
||||
}
|
||||
|
||||
focusFirst(): void {
|
||||
if (this.length === 0) { return; }
|
||||
this.setFocus(0);
|
||||
}
|
||||
|
||||
focusLast(): void {
|
||||
if (this.length === 0) { return; }
|
||||
this.setFocus(this.length - 1);
|
||||
}
|
||||
|
||||
getFocus(): number[] {
|
||||
return this.focus.get();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user