Skip to content

Commit 198963f

Browse files
committed
feat: utility method to normalize a path
1 parent a189883 commit 198963f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lua/lazy/core/util.lua

+7
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ function M.track(data, time)
2727
end
2828
end
2929

30+
function M.norm(path)
31+
if path:sub(1, 1) == "~" then
32+
path = vim.loop.os_homedir() .. "/" .. path:sub(2)
33+
end
34+
return path:gsub("\\", "/")
35+
end
36+
3037
function M.try(fn, msg)
3138
-- error handler
3239
local error_handler = function(err)

0 commit comments

Comments
 (0)