Browse Source

Neovim: More Windows

wayland
Riyyi 2 days ago
parent
commit
a2148c1e19
  1. 4
      .config/nvim/lua/core/functions.lua

4
.config/nvim/lua/core/functions.lua

@ -8,9 +8,7 @@ end
M.normalize_path = function(path)
if not path then return nil end
return string.find(vim.loop.os_uname().sysname, "NT")
and path:gsub("\\", "/")
or path
return IS_WINDOWS() and path:gsub("\\", "/") or path
end
M.get_file_path = function()

Loading…
Cancel
Save