pub trait EditorService: Send + Sync {
// Required methods
fn open(&self, path: &str, line: Option<usize>) -> Result<(), String>;
fn open_many(&self, paths: &[String]) -> Result<(), String>;
}Expand description
Open files in external editors.