neovim-cygwin icon indicating copy to clipboard operation
neovim-cygwin copied to clipboard

win32unix

Open DancingQuanta opened this issue 7 years ago • 1 comments
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?

DancingQuanta avatar Apr 12 '18 20:04 DancingQuanta

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

QAston avatar Mar 14 '21 09:03 QAston