cargo fmt + clippy lint

pull/1563/head^2
Blaž Hrastnik 2 years ago
parent 7c9ebd05b8
commit 4080341977

@ -436,7 +436,7 @@ impl Syntax {
}; };
syntax syntax
.update(source, source, &ChangeSet::new(&source)) .update(source, source, &ChangeSet::new(source))
.unwrap(); .unwrap();
syntax syntax
@ -735,9 +735,7 @@ impl Syntax {
.peekable(); .peekable();
// If there's no captures, skip the layer // If there's no captures, skip the layer
if captures.peek().is_none() { captures.peek()?;
return None;
}
Some(HighlightIterLayer { Some(HighlightIterLayer {
highlight_end_stack: Vec::new(), highlight_end_stack: Vec::new(),

@ -594,11 +594,7 @@ impl Document {
/// Set the programming language for the file if you know the name (scope) but don't have the /// Set the programming language for the file if you know the name (scope) but don't have the
/// [`syntax::LanguageConfiguration`] for it. /// [`syntax::LanguageConfiguration`] for it.
pub fn set_language2( pub fn set_language2(&mut self, scope: &str, config_loader: Arc<syntax::Loader>) {
&mut self,
scope: &str,
config_loader: Arc<syntax::Loader>,
) {
let language_config = config_loader.language_config_for_scope(scope); let language_config = config_loader.language_config_for_scope(scope);
self.set_language(language_config, Some(config_loader)); self.set_language(language_config, Some(config_loader));

@ -456,11 +456,7 @@ impl Editor {
let id = if let Some(id) = id { let id = if let Some(id) = id {
id id
} else { } else {
let mut doc = Document::open( let mut doc = Document::open(&path, None, Some(self.syn_loader.clone()))?;
&path,
None,
Some(self.syn_loader.clone()),
)?;
let _ = Self::launch_language_server(&mut self.language_servers, &mut doc); let _ = Self::launch_language_server(&mut self.language_servers, &mut doc);

Loading…
Cancel
Save