cascent / neovim-cygwin

cygport files to build neovim and dependencies for Cygwin, and binary releases
25 stars 3 forks source link

win32unix #5

Open DancingQuanta opened 6 years ago

DancingQuanta commented 6 years ago

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?

QAston commented 3 years ago

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