Advertisement
Guest User

Untitled

a guest
May 25th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. # Your keymap
  2. #
  3. # Atom keymaps work similarly to stylesheets. Just as stylesheets use selectors
  4. # to apply styles to elements, Atom keymaps use selectors to associate
  5. # keystrokes with events in specific contexts.
  6. #
  7. # You can create a new keybinding in this file by typing "key" and then hitting
  8. # tab.
  9. #
  10. # Here's an example taken from Atom's built-in keymap:
  11. #
  12. # '.editor':
  13. # 'enter': 'editor:newline'
  14. #
  15. # '.workspace':
  16. # 'ctrl-P': 'core:move-up'
  17. # 'ctrl-p': 'core:move-down'
  18. #
  19. 'body':
  20. 'ctrl-alt-cmd-r': 'window:reload'
  21.  
  22. # '.editor:not(.mini)':
  23. # 'shift-tab': 'emmet:expand-abbreviation'
  24. #
  25.  
  26. # 'atom-text-editor[data-grammar="text html php"]:not([mini])':
  27. # 'tab': 'emmet:expand-abbreviation-with-tab'
  28.  
  29. 'atom-text-editor:not([mini])':
  30. 'ctrl-e': 'unset!'
  31. 'ctrl-e': 'editor:move-to-end-of-line'
  32.  
  33. '.platform-darwin atom-pane atom-text-editor:not([mini])':
  34. 'cmd-/': 'editor:toggle-line-comments'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement