Skip to content

Commit 0b917f6

Browse files
committed
fix: handle get remote plugin path on Windows
1 parent b8d0a9d commit 0b917f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lua/CopilotChat/utils.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ M.get_remote_plugins_path = function()
1616
local os = vim.loop.os_uname().sysname
1717
if os == 'Linux' or os == 'Darwin' then
1818
return '~/.local/share/nvim/rplugin.vim'
19-
elseif os == 'Windows' then
19+
else
2020
return '~/AppData/Local/nvim/rplugin.vim'
2121
end
2222
end

0 commit comments

Comments
 (0)