Roman Gritsay

Results 6 comments of Roman Gritsay

@siddharthkp, I just thought about creating http API, as you said. I will start working on core extraction.

Sorry man, but I can't agree with your code style and lint config. So I gave up on this. I won't close PR, since this idea still has sense.

Yes, we can, but this will make a lot of changes. If u want to go this way, I'll help you:)

`init.coffee` ```js atom.commands.add 'atom-text-editor', 'custom:add_cursor_up', (event) -> atom.commands.dispatch(event.target, 'multi-cursor-plus:mark') atom.commands.dispatch(event.target, 'multi-cursor-plus:move-up') atom.commands.add 'atom-text-editor', 'custom:add_cursor_down', (event) -> atom.commands.dispatch(event.target, 'multi-cursor-plus:mark') atom.commands.dispatch(event.target, 'multi-cursor-plus:move-down') ``` `keymap.cson` ```cson 'cmd-alt-up': 'custom:add_cursor_up' 'cmd-alt-down': 'custom:add_cursor_down' ```

If someone will face the same issue, here is the solution https://github.com/randym/axlsx/pull/147

add to `.babelrc` following strings ``` { "presets": ["es2015"] } ```