Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased
<!-- Add all new changes here. They will be moved under a version at release -->
* `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
Expand Down
2 changes: 1 addition & 1 deletion script/files.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down