From 4080341977d10abe91808711a3d5c2bc726c10e1 Mon Sep 17 00:00:00 2001 From: Blaž Hrastnik Date: Sun, 23 Jan 2022 16:15:27 +0900 Subject: cargo fmt + clippy lint --- helix-view/src/document.rs | 6 +----- helix-view/src/editor.rs | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) (limited to 'helix-view/src') diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs index 0b5cfd22..413da7b2 100644 --- a/helix-view/src/document.rs +++ b/helix-view/src/document.rs @@ -594,11 +594,7 @@ impl Document { /// Set the programming language for the file if you know the name (scope) but don't have the /// [`syntax::LanguageConfiguration`] for it. - pub fn set_language2( - &mut self, - scope: &str, - config_loader: Arc, - ) { + pub fn set_language2(&mut self, scope: &str, config_loader: Arc) { let language_config = config_loader.language_config_for_scope(scope); self.set_language(language_config, Some(config_loader)); diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index caf2bce7..5f71fd46 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -456,11 +456,7 @@ impl Editor { let id = if let Some(id) = id { id } else { - let mut doc = Document::open( - &path, - None, - Some(self.syn_loader.clone()), - )?; + let mut doc = Document::open(&path, None, Some(self.syn_loader.clone()))?; let _ = Self::launch_language_server(&mut self.language_servers, &mut doc); -- cgit v1.2.3-70-g09d2