Revert "home, end in suggest"

This reverts commit 82211b4d3d.
fixes #10423
This commit is contained in:
Joao Moreno
2016-08-11 10:02:42 +02:00
parent 3313a641ec
commit 6cd78e2c76
3 changed files with 0 additions and 84 deletions

View File

@@ -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();
}