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
#![forbid(unsafe_code)]

pub mod cli;
pub mod config;
pub mod error;
pub mod opener;
pub mod resolver;
pub mod strategy;

pub use config::Config;
pub use error::SwitcherError;
pub use resolver::{identify_current, sibling_for_target, CurrentMatch};
pub use strategy::{select, Mode};