-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
So, the current keymapping on macOS is the same as closing windows (cmd+w) and fuzzy-finder (cmd+t).
I (currently) have mine setup to be all ctrl based:
'atom-workspace':
'ctrl-r': 'node-repl:run'
'ctrl-w': 'node-repl:toggle'
'ctrl-c': 'node-repl:clear'However, we could take a cue from the atom core team and make platform-dependent keybindings…
Like:
{
"atom-workspace": {
"ctrl-shift-r": "node-repl:run",
"ctrl-shift-w": "node-repl:toggle",
"ctrl-shift-c": "node-repl:clear",
},
".platform-darwin atom-workspace": {
"ctrl-r": "node-repl:run",
"ctrl-w": "node-repl:toggle",
"ctrl-c": "node-repl:clear",
}
}Any thoughts in one direction or the other?