Merge pull request #14460 from atom/jr-activate-next-or-previous-pane-in-dock

Fix ability to activate next/previous pane in a dock
This commit is contained in:
Jason Rudolph
2017-05-22 10:03:26 -04:00
committed by GitHub
3 changed files with 130 additions and 0 deletions

View File

@@ -626,6 +626,16 @@ module.exports = class Dock {
return this.paneContainer.getActivePane()
}
// Extended: Make the next pane active.
activateNextPane () {
return this.paneContainer.activateNextPane()
}
// Extended: Make the previous pane active.
activatePreviousPane () {
return this.paneContainer.activatePreviousPane()
}
paneForURI (uri) {
return this.paneContainer.paneForURI(uri)
}