aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-06-27 04:27:21 +0000
committerBlaž Hrastnik2021-06-27 04:27:47 +0000
commit44566ea812eed023c89ab49b59f62e76ef2bd6c7 (patch)
tree4f1e8edc1bf12cab097ec7caa34cbd401002605d /helix-core/src
parentcad14c6b46413b23d3afee7c979eeb0dbd4fb84c (diff)
Release 0.3.0
Diffstat (limited to 'helix-core/src')
-rw-r--r--helix-core/src/syntax.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs
index 63ca424e..42c275d3 100644
--- a/helix-core/src/syntax.rs
+++ b/helix-core/src/syntax.rs
@@ -194,7 +194,7 @@ impl LanguageConfiguration {
let language = get_language_name(self.language_id).to_ascii_lowercase();
let toml = load_runtime_file(&language, "indents.toml").ok()?;
- toml::from_slice(&toml.as_bytes()).ok()
+ toml::from_slice(toml.as_bytes()).ok()
})
.as_ref()
}