Neovim doesn't require win32yank.exe in the user's PATH. The shimexe version of win32yank.exe causes problems with clipboard+=unnamedplus in Neovim. Since it's not required in the PATH, and the shimexe version cause issues, this removes win32yank's shim.
Say the neovim clipboard option is set to set clipboard+=unnamedplus. If the win32yank.exe shim genereated by Scoop exists in the user's PATH, then it will be used. The shimexe [0] version of win32yank leaves dangling window instances, in the foreground, after every yank or paste operation. This indicates an incompatibility between Neovim and the win32yank.exe shimexe.
Neovim does not require win32yank.exe in the user's PATH. This is because Neovim looks for win32yank using the executeable() function [1]. The executeable() function always finds executeables in the same directory as vim [2]. Therefore, win32yank.exe isn't required to exist in the user's PATH variable for Neovim.
This PR reverts 3fc87da006e21dad39c13522427a35368ce402e2
[0] 2d9f964068/supporting/shimexe/shim.cs
[1] dc53629587/runtime/autoload/provider/clipboard.vim (L98)
[2] a1530ece87/runtime/doc/eval.txt (L3226)