davidmerrique / vscode-atom-keybindings

Port of Atom Keybindings for VS Code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Atom Keymap for VS Code

This extension ports popular Atom keyboard shortcuts to Visual Studio Code. After installing the extension and restarting VS Code your favorite keyboard shortcuts from Atom are now available.

What keyboard shortcuts are included?

You can see all the keyboard shortcuts in the extension's contribution list.

extension contributions

Why doesn't join lines or other Atom commands work?

This is because VS Code has not implemented this feature. Head on over to this GitHub issue and let the VS Code team know what you'd like to see.

Additionally, you can install an extension for many of these features:

How do I contribute a keyboard shortcut?

We may have missed a keyboard shortcut. If we did please help us out! It is very easy to make a PR.

  1. Head over to our GitHub repository.
  2. Open package.json.
  3. Add a JSON object to contributions.keybindings as seen below.
  4. Open a pull request.
{
    "mac": "<keyboard shortcut for mac>",
    "linux": "<keyboard shortcut for linux",
    "win": "<keyboard shortcut for windows",
    "key": "<default keyboard shortcut>",
    "command": "<name of the command in VS Code"
}

You can read more about how to contribute keybindings in extensions in the official documentation.

About

Port of Atom Keybindings for VS Code.

License:MIT License