neovim-cygwin
neovim-cygwin copied to clipboard
win32unix
trafficstars
Have you checked whether win32unix is set?
After installing through your cygport, I tried executing the command in command mode
:if has('win32unix') | echo "win32unix" | elseif has('win32') | echo "win"| elseif has('unix') | echo "unix" | endif
This returns unix despite being after win32unix. Just shortening the command to if has('win32unix') | echo "win32unix" | endif returns nothing.
On my vim installed through cygwin's setup.exe running the first command as above the result is 'win32unix'. You usually get 'unix' too if you only test for that.
How can you explain this?
Well, if you do :h feature-list in neovim it doesn't list win32unix as a valid feature, this probably needs to be brought upstream