Skip to content

Commit

Permalink
add keymaps for pane:shrink and pane:enlarge commands.
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxiong332 authored and kevinsawicki committed Aug 13, 2015
1 parent b410971 commit ccccc96
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions keymaps/darwin.cson
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,10 @@
'cmd-k cmd-8': 'editor:fold-at-indent-level-8'
'cmd-k cmd-9': 'editor:fold-at-indent-level-9'

'atom-workspace atom-pane':
'cmd-alt-=': 'pane:enlarge'
'cmd-alt--': 'pane:shrink'

# allow standard input fields to work correctly
'body .native-key-bindings':
'cmd-z': 'native!'
Expand Down
4 changes: 4 additions & 0 deletions keymaps/linux.cson
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@
'ctrl-k ctrl-8': 'editor:fold-at-indent-level-8'
'ctrl-k ctrl-9': 'editor:fold-at-indent-level-9'

'atom-workspace atom-pane':
'ctrl-alt-=': 'pane:enlarge'
'ctrl-alt--': 'pane:shrink'

# allow standard input fields to work correctly
'body .native-key-bindings':
'ctrl-z': 'native!'
Expand Down
4 changes: 4 additions & 0 deletions keymaps/win32.cson
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@
'ctrl-k ctrl-8': 'editor:fold-at-indent-level-8'
'ctrl-k ctrl-9': 'editor:fold-at-indent-level-9'

'atom-workspace atom-pane':
'ctrl-alt-=': 'pane:enlarge'
'ctrl-alt--': 'pane:shrink'

# allow standard input fields to work correctly
'body .native-key-bindings':
'ctrl-z': 'native!'
Expand Down

0 comments on commit ccccc96

Please sign in to comment.