[X] I have updated the plugin to the latest version before submitting this issue
[X] I have searched the existing issues of lazy.nvim
[X] I have searched the existing issues of plugins related to this issue
Neovim version (nvim -v)
v0.10.1
Operating system/version
Windows 11
Describe the bug
The build step of hererocks use vim.fn.executable to find python, and this causes conflicts on Windows that have chocolatey installed, because chocolatey ships a python executable.
Did you check docs and existing issues?
Neovim version (nvim -v)
v0.10.1
Operating system/version
Windows 11
Describe the bug
The build step of
hererocks
usevim.fn.executable
to find python, and this causes conflicts on Windows that havechocolatey
installed, becausechocolatey
ships a python executable.https://github.com/folke/lazy.nvim/blob/1159bdccd8910a0fd0914b24d6c3d186689023d9/lua/lazy/pkg/rockspec.lua#L36-L38
To fix this issue Neovim introduced
g:python3_host_prog
Steps To Reproduce
rest-nvim/rest.nvim
withhererocks
enabled (as on repro below)Expected Behavior
g:python3_host_prog
is set: use it as python executableRepro