vscode-atom-keybindings

Port of Atom Keybindings for VS Code.

  • Owner: microsoft/vscode-atom-keybindings
  • Platform:
  • License:: MIT License
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

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.

Changes Introduced in Version 3.0

  • Multi cursor editing changed from alt + click to ctrl (or cmd) + click.
  • Enable format on paste.

All of these features make VS Code more "Atom like." The changes to your User Settings file are as followed.

// Controls whether the prompt will show
"atomKeymap.promptV3Features": true,

// Changes the multi cursor mouse binding
"editor.multiCursorModifier": "ctrlCmd",

// Controls whether format on paste is on or off
"editor.formatOnPaste": true

Tip: If you want to see the prompt again simply change atomKeymap.promptV3Features to false and restart VS Code.

Why don't some Atom commands work?

This is because VS Code has not implemented those features. 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 contributes.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.

Overview

Name With Ownermicrosoft/vscode-atom-keybindings
Primary LanguageJavaScript
Program languageJavaScript (Language Count: 1)
Platform
License:MIT License
Release Count8
Last Release Namev3.3.0 (Posted on )
First Release Namev3.0.2 (Posted on )
Created At2016-03-09 22:48:25
Pushed At2024-04-05 14:15:47
Last Commit At
Stargazers Count145
Watchers Count27
Fork Count58
Commits Count128
Has Issues Enabled
Issues Count55
Issue Open Count17
Pull Requests Count30
Pull Requests Open Count3
Pull Requests Close Count5
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private
To the top