angular-switcher 0.1.0

Switch between Angular component files (.ts, .html, styles, .spec.ts) from the Zed editor with a customizable keybinding.
Documentation
[
  {
    "label": "Angular: cycle next sibling",
    "command": "angular-switcher",
    "args": ["--cycle", "$ZED_FILE"],
    "reveal": "never",
    "hide": "on_success",
    "allow_concurrent_runs": true
  },
  {
    "label": "Angular: cycle previous sibling",
    "command": "angular-switcher",
    "args": ["--cycle", "--reverse", "$ZED_FILE"],
    "reveal": "never",
    "hide": "on_success",
    "allow_concurrent_runs": true
  },
  {
    "label": "Angular: switch to TS",
    "command": "angular-switcher",
    "args": ["--to", "ts", "$ZED_FILE"],
    "reveal": "never",
    "hide": "on_success",
    "allow_concurrent_runs": true
  },
  {
    "label": "Angular: switch to HTML",
    "command": "angular-switcher",
    "args": ["--to", "html", "$ZED_FILE"],
    "reveal": "never",
    "hide": "on_success",
    "allow_concurrent_runs": true
  },
  {
    "label": "Angular: switch to Style",
    "command": "angular-switcher",
    "args": ["--to", "style", "$ZED_FILE"],
    "reveal": "never",
    "hide": "on_success",
    "allow_concurrent_runs": true
  },
  {
    "label": "Angular: switch to Spec",
    "command": "angular-switcher",
    "args": ["--to", "spec", "$ZED_FILE"],
    "reveal": "never",
    "hide": "on_success",
    "allow_concurrent_runs": true
  }
]