pimentel / atom-r-exec

Send R code to various R consoles from the Atom editor
https://atom.io/packages/r-exec
MIT License
19 stars 8 forks source link

Q/FIX: very silly issue: none of the commands / short cuts seem to work on my setup. #9

Closed dengemann closed 7 years ago

dengemann commented 9 years ago

Mac OS X 10.10, most recent R binaries. Most recent Atom versions. I don't know where to start debugging. Any hints would be welcomed.

hafen commented 9 years ago

I just made some updates to be current with the API. See if it works now. The package is quite minimal right now, but hope to see more functionality in the future.

pimentel commented 8 years ago

@dengemann is this still an issue? the package has changed a fair bit since May. Please let me know if it is.

pschloss commented 8 years ago

I'm unable to get cmd-enter to work with a fresh install of r-exec trying to get it to go to Terminal in Mac 10.11. Suggestions on what to try?

pimentel commented 8 years ago

@pschloss did you add the following to your ~/.atom/keymap.cson

'atom-workspace atom-text-editor:not([mini])':
  'cmd-enter': 'r-exec:send-command'

? If that doesn't work, try replacing it with the following:

'atom-workspace atom-text-editor':
  'cmd-enter': 'r-exec:send-command'

Keep me posted. Do the other key bindings work?

pschloss commented 8 years ago

Sorry, my bad, I clearly didn't read far enough in the instructions. The first one worked. Thanks for this great package!