diff options
Diffstat (limited to 'script')
-rw-r--r-- | script/core/hover/description.lua | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/script/core/hover/description.lua b/script/core/hover/description.lua index c46b239d..0cb5377f 100644 --- a/script/core/hover/description.lua +++ b/script/core/hover/description.lua @@ -24,11 +24,7 @@ local function collectRequire(mode, literal, uri) local shows = {} for i, uri in ipairs(result) do local searcher = searchers and searchers[uri] - local path = furi.decode(uri) - if path:sub(1, #rootPath) == rootPath then - path = path:sub(#rootPath + 1) - end - path = path:gsub('^[/\\]*', '') + local path = ws.getRelativePath(uri) if vm.isMetaFile(uri) then shows[i] = ('* [[meta]](%s)'):format(uri) elseif searcher then |