1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-15 13:51:40 +00:00

LSP: Improve handling of file URI scheme

Fixes #63205.

(cherry picked from commits 3fa943fe23,
42a16ef76e and
2ff69d6181)

(cherry picked from commit a412922c2b)
This commit is contained in:
Lamia
2022-07-24 21:42:32 +10:00
committed by Rémi Verschelde
parent 81215fc185
commit c34715a4fe
2 changed files with 6 additions and 4 deletions

View File

@@ -183,7 +183,9 @@ Dictionary GDScriptLanguageProtocol::initialize(const Dictionary &p_params) {
if (root_uri.length() && is_same_workspace) {
workspace->root_uri = root_uri;
} else {
workspace->root_uri = "file://" + workspace->root;
String r_root = workspace->root;
r_root = r_root.lstrip("/");
workspace->root_uri = "file:///" + r_root;
Dictionary params;
params["path"] = workspace->root;