Skip to content

Keymaps… #12

Description

@tbremer

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?

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions