Created
July 12, 2014 15:56
-
-
Save mastastealth/88ef0df9d686c1e6563d to your computer and use it in GitHub Desktop.
Emmet for Atom Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'.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' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated a few bindings to match closer what the Sublime Emmet bindings are.