From beaa6003bccc1e8142cb6dd8b62b77254b533444 Mon Sep 17 00:00:00 2001 From: Aiko-Suzuki <42787030+Aiko-Suzuki@users.noreply.github.com> Date: Thu, 27 Feb 2025 20:25:12 -0500 Subject: [PATCH 1/2] Update files.lua `local real = getRealParent(path:parent_path()) / res:filename() ` to `local real = getRealParent(path:parent_path())` since `getRealParent` already add `res:filename()` --- script/files.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/files.lua b/script/files.lua index f61330e21..e9e25c046 100644 --- a/script/files.lua +++ b/script/files.lua @@ -99,7 +99,7 @@ function m.getRealUri(uri) if uri == ruri then return ruri end - local real = getRealParent(path:parent_path()) / res:filename() + local real = getRealParent(path:parent_path()) ruri = furi.encode(real:string()) if uri == ruri then return ruri From 7d045e5bcd14263ba4ca95f1318a8b1efd554621 Mon Sep 17 00:00:00 2001 From: Aiko-Suzuki <42787030+Aiko-Suzuki@users.noreply.github.com> Date: Thu, 27 Feb 2025 20:30:01 -0500 Subject: [PATCH 2/2] Update changelog.md --- changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.md b/changelog.md index 97605aa7e..8c8dfc949 100644 --- a/changelog.md +++ b/changelog.md @@ -3,6 +3,7 @@ ## Unreleased * `FIX` incorrect argument skip pattern for `--check_out_path=`, which incorrectly skips the next argument +* `FIX` .luarc.json not being found in certain workspace using zed * `CHG` default path for `--doc_out_path` is the current directory * `FIX` incorrect error message for `--doc_update`. * `FIX` reimplement section `luals.config` in file doc.json