cliffrowley / atom-marked

Atom.io package to open the active file in Marked.app
MIT License
7 stars 2 forks source link

atom-marked no longer recognizing keybinding specified in keymap.cson #10

Open icn2you opened 9 years ago

icn2you commented 9 years ago

The keybinding specified in my keymap.cson file has worked fine since I installed theatom-marked package (several weeks ago). Two nights ago, it stopped working. Following is the keybinding declaration:

'atom-text-editor':
  'alt-shift-m': 'marked:open'

I've tried various key combinations to rule out any possibility there's a conflict with that specific combination. Basically, no key combination works. Any ideas?

Thank you for your time and help.

icn2you commented 9 years ago

As a follow-up to my issue, I implemented the following change to my keymap.cson file today, which works:

'.platform-darwin atom-text-editor:not([mini])':
  'alt-shift-m': 'marked:open'

Basically, theemmetpackage was using the default keybinding formarked(ctrl-shift-m). After successfully overriding it with the above selector, I altered the keybinding to my personal preference (alt-shift-m), which I'm already accustomed to.

Perhaps there was a change to Atom in the 1.0.7 release that requires greater specificity for theatom-markedkeybinding?