Rob Holt
Rob Holt
@abc516 definitely still open 🙂
I'm not familiar with pwsh-ls, but I'd be interested to know where this configuration is coming from. The [Start-EditorServices.ps1 script we currently ship](https://github.com/PowerShell/PowerShellEditorServices/blob/master/module/PowerShellEditorServices/Start-EditorServices.ps1) doesn't offer a `-File` parameter and is...
See https://github.com/PowerShell/vscode-powershell/issues/2538#issuecomment-596825533
> The pwsh process that's left running is the one that is started by PowerShell extension to run it's functionality That much is apparent from the startup string displayed in...
If you're able to edit the `Start-EditorServices.ps1` script (should be at `$HOME\.vscode\extensions\ms-vscode.powershell-1.9.0\modules\PowerShellEditorServices\Start-EditorServices.ps1`) you might be able to put `$ErrorActionPreference = 'Stop'` at the top. That script imports the PowerShellEditorServices module,...
Another thought I've had: it may end up that the script is not "failing" just blocked forever on something. If so, it might be possible to put a `Wait-Debugger` in...
See https://github.com/PowerShell/vscode-powershell/issues/1633#issuecomment-444955893 for the DLL to download
@compwiz32 That's excellent. I'm following up now to see if there are any ways in general to do something like turn one of these hangs into a crash or something...
So after looking into this, it looks like there are a couple of avenues to explore: 1. [Open an issue on VSCode](https://github.com/Microsoft/vscode/issues/new/choose), since it seems that there is something in...
[Looks like side-by-side is possible](https://github.com/Microsoft/vscode/issues/56260) although you might get warnings about it.