Skip to content

Instantly share code, notes, and snippets.

@andreis
Last active August 29, 2015 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreis/bb1ffb3ecc7b996afc03 to your computer and use it in GitHub Desktop.
Save andreis/bb1ffb3ecc7b996afc03 to your computer and use it in GitHub Desktop.
A minimal keybinding setup for Atom on OS X
'atom-text-editor':
'alt-left': 'editor:move-to-previous-subword-boundary'
'alt-right': 'editor:move-to-next-subword-boundary'
'alt-delete': 'editor:delete-to-end-of-subword'
'alt-d': 'editor:delete-to-end-of-subword'
'alt-backspace': 'editor:delete-to-beginning-of-subword'
'alt-delete': 'editor:delete-to-end-of-subword'
'alt-shift-left': 'editor:select-to-previous-subword-boundary'
'alt-shift-right': 'editor:select-to-next-subword-boundary'
'alt-up': 'editor:move-to-beginning-of-previous-paragraph'
'alt-down': 'editor:move-to-beginning-of-next-paragraph'
'alt-shift-up': 'editor:select-to-beginning-of-previous-paragraph'
'alt-shift-down': 'editor:select-to-beginning-of-next-paragraph'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment