From e177b27baf85611892b024453005808fed49707f Mon Sep 17 00:00:00 2001 From: Perry Thompson Date: Thu, 1 Jul 2021 21:52:22 -0500 Subject: [PATCH] Add missing import --- helix-core/src/syntax.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index 9dbb2c03..5b45a88f 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -94,6 +94,7 @@ fn load_runtime_file(language: &str, filename: &str) -> Result Result> { use std::fmt; + use std::path::PathBuf; #[derive(rust_embed::RustEmbed)] #[folder = "../runtime/"]