mirror of
https://github.com/jiriks74/presence.nvim
synced 2024-12-27 18:42:35 +01:00
Merge pull request #2 from DarkMatter-999/mingw-support
Added support for MINGW neovim install on Windows hosts
This commit is contained in:
commit
76935caabd
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ end
|
|||
|
||||
-- Normalize the OS name from uname
|
||||
function Presence.get_os_name(uname)
|
||||
if uname.sysname:find("Windows") then
|
||||
if uname.sysname:find("Windows") or uname.sysname:find("MINGW") then
|
||||
return "windows"
|
||||
elseif uname.sysname:find("Darwin") then
|
||||
return "macos"
|
||||
|
|
Loading…
Reference in a new issue