feat(in-app-help): integrate into existing help command

This commit is contained in:
Elian Doran
2025-02-02 17:49:26 +02:00
parent 122c1ad1ec
commit e24013adf5
7 changed files with 23 additions and 4 deletions

View File

@@ -90,6 +90,10 @@ export default class RootCommandExecutor extends Component {
await appContext.tabManager.openTabWithNoteWithHoisting("_backendLog", { activate: true });
}
async showHelpCommand() {
await appContext.tabManager.openTabWithNoteWithHoisting("_help", { activate: true });
}
async showLaunchBarSubtreeCommand() {
const rootNote = utils.isMobile() ? "_lbMobileRoot" : "_lbRoot";
await this.showAndHoistSubtree(rootNote);