feat: ctrl+a to select all items (#1123)

This commit is contained in:
Aman Harwara
2022-06-19 17:09:03 +05:30
committed by GitHub
parent 3e2e03f1de
commit dcf3724e2c
10 changed files with 216 additions and 98 deletions

View File

@@ -215,6 +215,10 @@ export class ItemListController extends AbstractViewController implements Intern
}
}
public get listLength() {
return this.renderedItems.length
}
public getActiveItemController(): NoteViewController | FileViewController | undefined {
return this.application.itemControllerGroup.activeItemViewController
}