Scope split-view bindings on body so fuzzy-finder can open in splits

Previously, they were scoped on .pane, but fuzzy-finder isn't inside
a pane and still needs to be able to respond to split events.
This commit is contained in:
Nathan Sobo
2013-02-28 07:02:37 -07:00
committed by probablycorey
parent 5bba4cd9f7
commit 29566d55c6

View File

@@ -30,16 +30,17 @@
'ctrl-tab': 'window:focus-next-pane'
'ctrl-meta-f': 'window:toggle-full-screen'
'.pane':
'meta-{': 'pane:show-previous-item'
'meta-}': 'pane:show-next-item'
'alt-meta-left': 'pane:show-previous-item'
'alt-meta-right': 'pane:show-next-item'
'ctrl-|': 'pane:split-right'
'ctrl-w v': 'pane:split-right'
'ctrl--': 'pane:split-down'
'ctrl-w s': 'pane:split-down'
'.pane':
'meta-{': 'pane:show-previous-item'
'meta-}': 'pane:show-next-item'
'alt-meta-left': 'pane:show-previous-item'
'alt-meta-right': 'pane:show-next-item'
'.tool-panel':
'meta-escape': 'tool-panel:unfocus'
'escape': 'core:close'