mirror of https://github.com/helix-editor/helix
Fix code indentation (#671)
parent
847d1fa496
commit
03ad9e0bfa
|
@ -148,21 +148,21 @@ impl EditorView {
|
||||||
syntax
|
syntax
|
||||||
.highlight_iter(text.slice(..), Some(range), None, |language| {
|
.highlight_iter(text.slice(..), Some(range), None, |language| {
|
||||||
loader
|
loader
|
||||||
.language_config_for_scope(&format!("source.{}", language))
|
.language_config_for_scope(&format!("source.{}", language))
|
||||||
.and_then(|language_config| {
|
.and_then(|language_config| {
|
||||||
let config = language_config.highlight_config(scopes)?;
|
let config = language_config.highlight_config(scopes)?;
|
||||||
let config_ref = config.as_ref();
|
let config_ref = config.as_ref();
|
||||||
// SAFETY: the referenced `HighlightConfiguration` behind
|
// SAFETY: the referenced `HighlightConfiguration` behind
|
||||||
// the `Arc` is guaranteed to remain valid throughout the
|
// the `Arc` is guaranteed to remain valid throughout the
|
||||||
// duration of the highlight.
|
// duration of the highlight.
|
||||||
let config_ref = unsafe {
|
let config_ref = unsafe {
|
||||||
std::mem::transmute::<
|
std::mem::transmute::<
|
||||||
_,
|
_,
|
||||||
&'static syntax::HighlightConfiguration,
|
&'static syntax::HighlightConfiguration,
|
||||||
>(config_ref)
|
>(config_ref)
|
||||||
};
|
};
|
||||||
Some(config_ref)
|
Some(config_ref)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
.map(|event| event.unwrap())
|
.map(|event| event.unwrap())
|
||||||
.collect() // TODO: we collect here to avoid holding the lock, fix later
|
.collect() // TODO: we collect here to avoid holding the lock, fix later
|
||||||
|
|
Loading…
Reference in New Issue