Sublime Text Keymap extension for VS Code
Перейти к файлу
Simon Sarris 1a0741b2d4 Update README.md
From: Why doesn't join lines or other Sublime Text commands work?
To: Why don't all Sublime Text commands work? 

Reasoning: Join Lines, for one, works! Also removed the link to the join lines extension because it is deprecated.
2017-02-22 15:28:21 -05:00
.vscode Fixed missing `key` bug 2016-10-19 17:39:46 -07:00
.gitignore Remove .DS_Store 2016-11-03 13:39:18 -07:00
.vscodeignore init 2016-03-03 16:00:06 +01:00
CHANGELOG.md v1.5.2 2016-10-24 10:19:23 -07:00
README.md Update README.md 2017-02-22 15:28:21 -05:00
contributions_list.png Updating image. 2016-10-19 17:42:01 -07:00
license.txt Added license 2016-03-11 15:27:12 -08:00
package.json Fixes #43 2017-02-06 15:20:38 -08:00
sublime_keyboard.svg v1.6.1 2016-11-17 17:36:18 -08:00

README.md

Sublime Text Keymap for VS Code

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

What keyboard shortcuts are included?

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

extension contributions

Why don't all Sublime Text commands work?

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

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 the package.json file.
  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.

License

MIT