-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
findNvim: support finding nvim in Windows WSL #430
Comments
Ok, I see that this blocks vscode-neovim/vscode-neovim#2287 . if (config.useWsl) {
args.push("C:\\Windows\\system32\\wsl.exe");
if (config.wslDistribution.length) {
args.push("-d", config.wslDistribution);
}
} I think that findNvim(..., {
paths: [
['C:\\Windows\\system32\\wsl.exe', '-d', ..., 'nvim'],
],
}) Perhaps in the future, |
Should we search wsl's $PATH? |
We could try that in the future, but I think just changing the current |
I'm not sure I follow. What should |
The missing piece is that consumers like vscode-neovim/vscode-neovim#2287 can't send a full command which represents "nvim". It can only send a location ( node-client doesn't need to know about WSL, it just needs to run what the consumer gives it. Currently the consumer can only send |
I have a PR that I'll post in a minute. #432 |
Ah, I see. |
No description provided.
The text was updated successfully, but these errors were encountered: