aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src
diff options
context:
space:
mode:
authorBrian Dawn2021-06-05 16:50:34 +0000
committerBlaž Hrastnik2021-06-06 01:49:17 +0000
commitae105812d6c7ec20220d78d453f614438fbc5ba4 (patch)
treea548bf044037793ad63b2108f90f417f7c70acd7 /helix-core/src
parent255598a2cb871ffc6cb3cc07a464acdd6e4d8293 (diff)
Apply suggestions from code review
Co-authored-by: Ivan Tham <pickfire@riseup.net>
Diffstat (limited to 'helix-core/src')
-rw-r--r--helix-core/src/syntax.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs
index 2d1cbccb..a046a9c5 100644
--- a/helix-core/src/syntax.rs
+++ b/helix-core/src/syntax.rs
@@ -81,10 +81,7 @@ fn load_runtime_file(language: &str, filename: &str) -> Result<String, std::io::
}
#[cfg(feature = "embed_runtime")]
-use rust_embed::RustEmbed;
-
-#[cfg(feature = "embed_runtime")]
-#[derive(RustEmbed)]
+#[derive(rust_embed::RustEmbed)]
#[folder = "../runtime/"]
struct Runtime;
@@ -93,7 +90,7 @@ fn load_runtime_file(language: &str, filename: &str) -> Result<String, Box<dyn s
let root = PathBuf::new();
let path = root.join("queries").join(language).join(filename);
- let query_bytes = Runtime::get(&path.as_path().display().to_string()).unwrap_or_default();
+ let query_bytes = Runtime::get(&path.display().to_string()).unwrap_or_default();
std::str::from_utf8(query_bytes.as_ref())
.map(|s| s.to_string())
.map_err(|err| err.into())