Add keyboard shortcuts for focus on current query and go to next output query tab (#1153)

* add go to next output query tab shotcut

* add a new keyboard shortcut for focus on current query

* minor change
This commit is contained in:
Abbie Petchtes
2018-04-13 11:11:25 -07:00
committed by GitHub
parent 9a5f51bfbf
commit 13fb9fdfd2
9 changed files with 86 additions and 2 deletions

View File

@@ -102,6 +102,11 @@ export class QueryOutputComponent implements OnInit, OnDestroy {
this._cd.detectChanges();
}
})));
this._disposables.push(toDisposableSubscription(this.queryComponent.goToNextQueryOutputTabRequested.subscribe(() => {
let activeTab = this._panel.getActiveTab;
this._panel.selectOnNextTab();
})));
}
public ngOnDestroy(): void {