Skip to content

Latest commit

 

History

History
52 lines (47 loc) · 1.01 KB

File metadata and controls

52 lines (47 loc) · 1.01 KB

Day 27 - VSpaceCode

cmd + ; -> show VSpaceCode operations

init setting keybindings

override/create

  "vspacecode.bindingOverrides": [
    {
      "keys": "g",
      "name": "go...",
      "type": "bindings",
      "bindings": [
        {
          "key": "g",
          "name": "go to",
          "type": "command",
          "command": "workbench.action.gotoLine"
        }
      ]   
    }
  ]

custom

  "vspacecode.bindings": [
    {
      "key": "g",
      "name": "go...",
      "type": "bindings",
      "bindings": [
        {
          "key": "g",
          "name": "go to",
          "type": "command",
          "command": "workbench.action.gotoLine"
        }
      ]   
    }
  ]