PowerShellEditorServices
PowerShellEditorServices copied to clipboard
A common platform for PowerShell development support in any editor or application!
This covers the desire to go back through recently merged PRs (and my own Git stashes) to see what bugs we fixed that could be covered with a regression test...
 Expected: The actual value
 To be clear it's not in local/script/global either. I would expect it to be in local. This is probably an issue in how we fetch variables from the various...
Hm, well this is as far as I got with the test and I think I'm going to postpone getting a test for this so we can just get the...
This happens because we get a completion request for `[type]:` which gets no results and for some reason isn't marked as incomplete. Need to look into how to fix that.
This unit test is currently skipped, indicating a bug in product code: https://github.com/PowerShell/PowerShellEditorServices/blob/c4f424fcdd931cc0ef3d9a970d628f83f994e77b/test/PowerShellEditorServices.Test/Debugging/DebugServiceTests.cs#L964-L987 It turns out that what's happening is that when this is getting the children variables: https://github.com/PowerShell/PowerShellEditorServices/blob/aa1c253fd009cfcc2812dbf38ddca8a920f1f40c/src/PowerShellEditorServices/Services/DebugAdapter/Debugging/VariableDetails.cs#L263-L277 It...
There are significant performance impacts on projects with a large number of files in a workspace because of the way and frequency PSES searches through all of the files in...
# PR Summary This change is paired with PowerShell/vscode-powershell#4065 Adds a client utilizing a custom notification to sync breakpoints between the client and the server at all times. All breakpoint...
It takes _way_ too many arguments to launch PSES correctly, which is blocking #1829. Once we simplify this, we could conceivably add a `-lsp` flag to PowerShell itself that would...