I want to open a set of files in a single vim window. This works:
$list = gci *.py -recurse
& gvim.exe $list
But this does not (it just gives me an empty vim window):
gci *.py -recurse | gvim.exe
How can this be done in a single line? It would also be helpful to know why my second method didn't work.