Sublime Text Keymap extension for VS Code
Перейти к файлу
Till Salinger 80ea20c5d4 update readme 2018-04-23 11:00:24 +02:00
.github Assign issues to tsalinger 2018-03-27 21:53:48 -07:00
.readme update readme 2018-04-23 11:00:24 +02:00
.vscode converted to typescript 2018-04-15 19:05:51 +02:00
settings default settings are stored in json file 2018-04-21 19:23:31 +02:00
src sorting default settings 2018-04-23 09:44:59 +02: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 update changelog 2018-04-16 12:08:54 +02:00
README.md update readme 2018-04-23 11:00:24 +02:00
license.txt Added license 2016-03-11 15:27:12 -08:00
package-lock.json added keymap to package.json 2018-04-15 19:16:46 +02:00
package.json hasPrompted is no longer stored as user setting 2018-04-16 10:21:06 +02:00
sublime-keybindings-3.0.0.vsix Uploading vsix 2017-06-21 14:14:43 -07:00
sublime_keyboard.png replace svg with png 2017-06-14 13:40:05 -07:00
sublime_keyboard_with_padding.png Updated icon for 3.0 2017-07-12 10:17:57 -07:00
tsconfig.json replaced HTML UI with multipicker 2018-04-05 13:52:37 +02:00
tslint.json default settings are stored in json file 2018-04-21 19:23:31 +02:00

README.md

Sublime Importer for VS Code

This extension imports keybindings and settings from Sublime Text to VS Code.

Getting Started

Keymappings

This extension ports the most popular Sublime Text keyboard shortcuts to Visual Studio Code.
Just restart VS Code after installing this extension and your favorite Sublime Text keyboard shortcuts will be available in VS Code.

Importing settings

A prompt is shown the first time the extension is launched that let's you import your Sublime Settings.
If you want to import your settings at a later time use the Import Sublime Text settings command from the Command Palette (F1).

FAQ

What keyboard shortcuts are included?

The included keyboard shortcuts can be looked up in the 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:

Contributing

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"
}

How do I contribute a Sublime setting?

There are two different types of settings files: The mappings file holds the information on how a certain sublime setting should be mapped to a VS Code setting. The defaults file contains settings that are set by default in Sublime.

  1. Head over to our GitHub repository.
  2. Open the settings/mappings.json file or the settings/defaults.json file.
  3. Add your setting
  4. Open a pull request.

License

MIT