fix: Wrong comment type; actually return M

This commit is contained in:
punkfairie 2024-11-28 21:20:54 -08:00
parent c1f894e0f3
commit 123dfb81f9
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696

View file

@ -1,21 +1,23 @@
# https://github.com/folke/lazy.nvim/blob/main/lua/lazy/core/util.lua
-- https://github.com/folke/lazy.nvim/blob/main/lua/lazy/core/util.lua
---@class lib.lazy.util
local M = {}
---@return string
function M.norm(path)
if path:sub(1, 1) == "~" then
local home = vim.uv.os_homedir() or ""
if path:sub(1, 1) == '~' then
local home = vim.uv.os_homedir() or ''
if home:sub(-1) == "\\" or home:sub(-1) == '/' then
if home:sub(-1) == '\\' or home:sub(-1) == '/' then
home = home:sub(1, -2)
end
path = home .. path:sub(2)
end
path = path:gsub("\\", "/"):gsub("/+", "/")
path = path:gsub('\\', '/'):gsub('/+', '/')
return path:sub(-1) == "/" and path:sub(1, -2) or path
return path:sub(-1) == '/' and path:sub(1, -2) or path
end
return M