mirror of
https://github.com/helix-editor/helix.git
synced 2025-01-19 13:37:06 +04:00
Simplify creating pathbufs.
Co-authored-by: Ivan Tham <pickfire@riseup.net>
This commit is contained in:
parent
ae105812d6
commit
676719b361
@ -87,8 +87,7 @@ fn load_runtime_file(language: &str, filename: &str) -> Result<String, std::io::
|
||||
|
||||
#[cfg(feature = "embed_runtime")]
|
||||
fn load_runtime_file(language: &str, filename: &str) -> Result<String, Box<dyn std::error::Error>> {
|
||||
let root = PathBuf::new();
|
||||
let path = root.join("queries").join(language).join(filename);
|
||||
let path = PathBuf::from("queries").join(language).join(filename);
|
||||
|
||||
let query_bytes = Runtime::get(&path.display().to_string()).unwrap_or_default();
|
||||
std::str::from_utf8(query_bytes.as_ref())
|
||||
|
Loading…
Reference in New Issue
Block a user