Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
saranshsaini committed Sep 28, 2024
1 parent 7ae7e95 commit 1a6c347
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lua/codeium/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,9 @@ end
function M.get_uri(path)
local info = io.get_system_info()
if info.is_windows then
path = "file://" .. path:gsub("\\", "/")
return path
else
return 'file://' .. path
path = path:gsub("\\", "/")
end
return "file://" .. path
end

return M

0 comments on commit 1a6c347

Please sign in to comment.