fcoury / atom-rspec

Atom RSpec runner package
MIT License
69 stars 42 forks source link

broke my shortcuts to run specs #58

Closed betarelease closed 9 years ago

betarelease commented 9 years ago

I have the latest version and now I am not able to use the shortcuts like Ctrl+Alt+T, Ctrl+Alt+E etc.

kianw commented 9 years ago

same

jkeck commented 9 years ago

FWIW I added the following to my keymap (Atom -> Open Your Keymap) temporarily to get my shortcuts back.

'atom-text-editor':
  'ctrl-alt-x': 'rspec:run-for-line'
  'ctrl-alt-t': 'rspec:run'
  'ctrl-alt-r': 'rspec:run-all'

There is currently a PR (see #59) about fixing this in the atom-rspec package itself to use - instead of + in the provided keymap.

betarelease commented 9 years ago

Thanks @jkeck. That worked for me.

matugm commented 9 years ago

Should be fixed on latest version.