Skip to content
This repository has been archived by the owner on Jul 1, 2020. It is now read-only.

Commit

Permalink
Resolve deprecations in keymaps/maximize-panes.cson
Browse files Browse the repository at this point in the history
- Use atom-workspace instead of workspace
- Use atom-text-editor instead of editor
  • Loading branch information
jasonrudolph committed May 22, 2015
1 parent a9d0932 commit 8e2894d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions keymaps/maximize-panes.cson
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
# execute.
#
# Below is a basic keybinding which registers on all platforms by applying to
# the root workspace element.
# the root atom-workspace element.

# For more detailed documentation see
# https://atom.io/docs/latest/advanced/keymaps

# keymaps for OSX
'.platform-darwin .workspace .editor:not(.mini)':
'.platform-darwin atom-workspace atom-text-editor:not([mini])':
'cmd-shift-enter': 'maximize-panes:maximize'

# commands for windows and Linux due to their lack of an cmd key
'.platform-win32 .workspace .editor:not(.mini)':
'.platform-win32 atom-workspace atom-text-editor:not([mini])':
'ctrl-shift-enter': 'maximize-panes:maximize'

'.platform-linux .workspace .editor:not(.mini)':
'.platform-linux atom-workspace atom-text-editor:not([mini])':
'ctrl-shift-enter': 'maximize-panes:maximize'

0 comments on commit 8e2894d

Please sign in to comment.