aki77 / atom-expand-region

expanding selection
https://atom.io/packages/expand-region
MIT License
89 stars 9 forks source link

Default alt-up / alt-down are overwritten by Emmet #14

Closed mikeerickson closed 8 years ago

mikeerickson commented 8 years ago

Is there a way in which I can make sure expand-region alt-up/alt-down are triggered instead of emmet? I use the alt-up / alt-down trigger in other apps (ie Webstorm) and I would much rather it trigger than emmet (can I disable emmet usage of these triggers

mikeerickson commented 8 years ago

Cured:

Add the following to keymap.cson

'.workspace .editor':
  'alt-up': 'unset!',
  'alt-up': 'expand-region:expand',
  'alt-down': 'unset!',
  'alt-down': 'expand-region:shrink',