Sublime Text Keymap extension for VS Code
Перейти к файлу
Ladislau Szomoru 5d7eac6603
Engineering - cleanup TSA pipeline template parameter (#176)
2024-03-18 11:10:06 +01:00
.github Change default assignment to chrisdias 2019-06-23 12:53:01 -07:00
.readme update readme 2018-04-23 11:00:24 +02:00
.vscode use webpack for node 2020-08-26 11:25:53 +02:00
build Engineering - cleanup TSA pipeline template parameter (#176) 2024-03-18 11:10:06 +01:00
settings fixes #89 2018-04-27 11:08:56 +02:00
src Onboard to Localization (#175) 2023-12-14 07:23:45 -08:00
.gitignore ignore .vsix 2021-03-31 17:12:21 -07:00
.vscodeignore use webpack for node 2020-08-26 11:25:53 +02:00
CHANGELOG.md prepare for release 2021-08-30 14:59:31 +02:00
LICENSE.md update lodash, do some cleanup 2020-07-20 09:49:07 -07:00
README.md readme 2021-03-31 11:54:30 -07:00
SECURITY.md add SECURITY.md 2021-04-02 17:06:16 -07:00
package-lock.json Onboard to Localization (#175) 2023-12-14 07:23:45 -08:00
package.json Onboard to Localization (#175) 2023-12-14 07:23:45 -08:00
package.nls.json Onboard to Localization (#175) 2023-12-14 07:23:45 -08: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 Visual Studio Code.

Getting Started

Keymappings

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

Importing settings

The first time the extension is launched a prompt is shown that lets you import your Sublime Settings.
If you want to import your settings at a later time use the Sublime Text Keymap: 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 sublime setting can be mapped to a VS Code setting. The defaults file contains default Sublime settings that are not explicitly set in the Sublime settings file (e.g. the Monokai theme).
To make a Pull Request:

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

License

MIT