In select-pasted.coffee, for pasting to work at all I had to change line 25 to:
editor = atom.workspace.getActiveTextEditor()
and to detect paste without formatintting I changed line 24 to:
if event.type == 'core:paste' or event.type == 'editor:paste-without-reformatting'
In select-pasted.coffee, for pasting to work at all I had to change line 25 to:
editor = atom.workspace.getActiveTextEditor()
and to detect paste without formatintting I changed line 24 to:
if event.type == 'core:paste' or event.type == 'editor:paste-without-reformatting'