angular-switcher 0.1.0

Switch between Angular component files (.ts, .html, styles, .spec.ts) from the Zed editor with a customizable keybinding.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[
  {
    "context": "Workspace",
    "bindings": {
      "alt-s": ["task::Spawn", { "task_name": "Angular: cycle next sibling" }],
      "alt-shift-s": [
        "task::Spawn",
        { "task_name": "Angular: cycle previous sibling" }
      ],
      "alt-t": ["task::Spawn", { "task_name": "Angular: switch to TS" }],
      "alt-h": ["task::Spawn", { "task_name": "Angular: switch to HTML" }],
      "alt-c": ["task::Spawn", { "task_name": "Angular: switch to Style" }],
      "alt-x": ["task::Spawn", { "task_name": "Angular: switch to Spec" }]
    }
  }
]