Add toggle commands

This commit is contained in:
Matthew Dapena-Tretter
2017-03-09 17:12:26 -08:00
parent 5c7bd66896
commit 5b4f402278

View File

@@ -55,6 +55,9 @@ module.exports = ({commandRegistry, commandInstaller, config, notificationManage
'application:open-license': -> @getModel().openLicense()
'window:run-package-specs': -> @runPackageSpecs()
'window:run-benchmarks': -> @runBenchmarks()
'window:toggle-left-dock': -> @getModel().getLeftDock().toggle()
'window:toggle-right-dock': -> @getModel().getRightDock().toggle()
'window:toggle-bottom-dock': -> @getModel().getBottomDock().toggle()
'window:focus-next-pane': -> @getModel().activateNextPane()
'window:focus-previous-pane': -> @getModel().activatePreviousPane()
'window:focus-pane-above': -> @focusPaneViewAbove()