Skip to content
This repository has been archived by the owner on Jun 23, 2020. It is now read-only.

Latest commit

 

History

History
38 lines (32 loc) · 1.17 KB

README.md

File metadata and controls

38 lines (32 loc) · 1.17 KB

This extension is moved to VSpaceCode to benefit a larger community. This extension will no longer receive any update.

Migration

If you are currently using this extension, you can uninstall this extension spacecode and install VSpaceCode

If you have any custom bindings/settings in the settings.json, you can also move them by renaming the key after the installation of VSpaceCode.

spacecode.checkVimConfig -> vspacecode.checkVimConfig

spacecode.bindings -> vspacecode.bindings

spacecode.bindingOverrides -> vspacecode.bindingOverrides

Vim Users

Update the command name in settings.json from spacecode.space to vspacecode.space like as follow

"vim.normalModeKeyBindingsNonRecursive": [
  {
    "before": ["<space>"],
    "commands": ["vspacecode.space"]
  }
],
"vim.visualModeKeyBindingsNonRecursive": [
  {
    "before": ["<space>"],
    "commands": ["vspacecode.space"]
  }
]

Non-Vim Users

Update the command name in keybindings.json from spacecode.space to vspacecode.space like as follow

{
  "key": "alt+space",
  "command": "vspacecode.space",
  "when": "editorTextFocus"
}