Skip to content

Instantly share code, notes, and snippets.

@mastastealth
Created July 12, 2014 15:56
Show Gist options
  • Save mastastealth/88ef0df9d686c1e6563d to your computer and use it in GitHub Desktop.
Save mastastealth/88ef0df9d686c1e6563d to your computer and use it in GitHub Desktop.
Emmet for Atom Windows
'.editor:not(.mini)':
'cmd-E': 'emmet:expand-abbreviation'
'ctrl-d': 'emmet:balance-outward'
'alt-d': 'emmet:balance-inward'
'ctrl-alt-j': 'emmet:matching-pair'
'ctrl-right': 'emmet:next-edit-point'
'ctrl-left': 'emmet:prev-edit-point'
'cmd-`': 'emmet:split-join-tag'
"cmd-;": 'emmet:remove-tag'
'cmd-Y': 'emmet:evaluate-math-expression'
'alt-up': 'emmet:increment-number-by-01'
'alt-down': 'emmet:decrement-number-by-01'
'ctrl-up': 'emmet:increment-number-by-1'
'ctrl-down': 'emmet:decrement-number-by-1'
'alt-shift-up': 'emmet:increment-number-by-10'
'alt-shift-down': 'emmet:decrement-number-by-10'
'ctrl-alt-right': 'emmet:select-next-item'
'ctrl-alt-left': 'emmet:select-previous-item'
'cmd-R': 'emmet:reflect-css-value'
'ctrl-I': 'emmet:update-image-size'
'ctrl-shift-I': 'emmet:encode-decode-data-url'
'ctrl-U': 'emmet:update-tag'
'cmd-M': 'emmet:merge-lines'
'ctrl-shift-g': 'emmet:wrap-with-abbreviation'
'cmd-alt-enter': 'emmet:interactive-expand-abbreviation'
# more specificity to Emmet to override Tab key action for snippets plugin
'.pane .editor:not(.mini)':
'tab': 'emmet:expand-abbreviation-with-tab'
'cmd-/': 'emmet:toggle-comment'
'enter': 'emmet:insert-formatted-line-break-only'
@mastastealth
Copy link
Author

Updated a few bindings to match closer what the Sublime Emmet bindings are.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment