in src/main.rs [292:296]
fn save(&mut self, path: &Path, text: &str) -> Result<()> { fs::write(path, text).with_context(|| format!("Unable to write to {:?}", path))?; self.record_change(path.to_owned()); Ok(()) }