ajile / word-jumper

Provides ability to jump camelCase hills.
MIT License
8 stars 5 forks source link

Why not using just `ctrl` as a modifier? #5

Closed pierreozoux closed 10 years ago

pierreozoux commented 10 years ago

It is the convention on Sublime and Xcode.

ajile commented 10 years ago

On the Mac by default combination ctrl+right/left switch screens if they are turned on. Also by default Sublime uses ctrl+alt+right/left combination and I wanted to make some plugin similar Sublime.

pierreozoux commented 10 years ago

Ok, thanks for your answer :)

maxnowack commented 9 years ago

Here's a workaround:

I've disabled the default osx shortcuts and adjusted my keymap.cson

'atom-text-editor':
  'ctrl-left': 'word-jumper:move-left'
  'ctrl-right': 'word-jumper:move-right'
  'ctrl-shift-left': 'word-jumper:select-left'
  'ctrl-shift-right': 'word-jumper:select-right'