From 01b59428c22b8a8b6a1f50d5d72b7e5700bc7d17 Mon Sep 17 00:00:00 2001 From: light-ly Date: Sun, 1 Dec 2024 22:24:49 +0800 Subject: [PATCH] fix vhdl std path --- src/sources.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sources.rs b/src/sources.rs index 8784fee..52cfcfd 100644 --- a/src/sources.rs +++ b/src/sources.rs @@ -858,7 +858,7 @@ pub fn vhdl_parser_pipeline( } } None => { - let std_cfg_path = match PathBuf::from_str(&(extension_path + "/resources/dide-lsp/static/vhdl_libraries/vhdl_ls.toml")) { + let std_cfg_path = match PathBuf::from_str(&(extension_path + "/resources/dide-lsp/static/vhdl_std_lib/vhdl_ls.toml")) { Ok(path) => path, Err(e) => { info!("error happen in : {:?}", e);