edtr 0.1.5

An editor router/transfer tool that dispatches files to the right editor based on rules.
1
2
3
4
5
6
7
8
//! Editor backends. `kind` in config selects one of these.
//!
//! Each backend exposes its own `dispatch` method because their natural call
//! shapes differ (neovim is async due to RPC, generic is sync). A unifying
//! trait was tried during scaffold but didn't carry its weight.

pub mod generic;
pub mod neovim;