mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 17:22:51 -05:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user