PowerShellEditorServices
PowerShellEditorServices copied to clipboard
A common platform for PowerShell development support in any editor or application!
While the tooltip parser is resilient enough to not straight up throw, it does generate some weird results:  
Multi-hop remoting is a common scenario for the extension (and for PowerShell generally) and we need to make sure that it works as expected. The steps are: - From the...
We unfortunately clear all existing breakpoints in the PowerShell session on the initialization of the debug server, essentially overwriting them with the breakpoints set in the UI: https://github.com/PowerShell/PowerShellEditorServices/blob/dd870ec1887c3cd69f18459d3e226067ab4f2098/src/PowerShellEditorServices/Server/PsesDebugServer.cs#L110-L111 and in...
On MacOS (and I imagine Linux) dot files are hidden, and as such, are not displayed by `Get-ChildItem` which `Open-EditorFile` uses to get the file(s) to open. This makes using...
I'm seeing an error in PSES when integrating with VS. I'm not sure if it's a problem with my integration or with PSES. PSScriptAnaylzer is showing suggestions but IntelliSense doesn't...
PR to follow to clean up a lot of these compiler warning errors ``` c:\Users\JGrote\Projects\PowerShellEditorServices\src\PowerShellEditorServices\Services\DebugAdapter\Handlers\DebugEvaluateHandler.cs(50,17): warning CS4014: Because this call is not awaited, execution of the current method continues before...
Dependency injection and "interface everything" can be very useful patterns but they also increase maintenance and debug complexity. Source generators can help by making references actually followable (DI) or reducing...
 Per @SeeminglyScience it's probably because the ToString is trying to marshal to the pipeline thread and deadlocking.
# The Problem I am unable to create a web based script editor with a terminal because both PSReadline and LegacyReadLine ultimately call Console.GetKey and Console.Write, causing the input and...
I filed an issue on the mail PowerShell project https://github.com/PowerShell/PowerShell/issues/16643 Basically hosts other than "ConsoleHost" - including the _Visual Studio Code Host_ need to be updated so that when $PSStyle.OutputRendering...