diff --git a/src/dock.js b/src/dock.js index 0e6d60e4e..d531e8627 100644 --- a/src/dock.js +++ b/src/dock.js @@ -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) }