PowerShellEditorServices icon indicating copy to clipboard operation
PowerShellEditorServices copied to clipboard

A common platform for PowerShell development support in any editor or application!

Results 171 PowerShellEditorServices issues
Sort by recently updated
recently updated
newest added

Just thought I'd throw this discussion point out there. If we know by the AST that someone is doing foreach -parallel, we are going to know the behavior. Can we...

Issue-Discussion
Area-Debugging

![image](https://user-images.githubusercontent.com/15258962/151021478-1b4af608-c899-4e49-8a5a-d704822cc6ad.png)

Issue-Enhancement
Area-Code Navigation

We have a kind of primitive stab at a method to clean up a faulty runspace state in the PSES pipeline thread consumer here: https://github.com/PowerShell/PowerShellEditorServices/blob/9fd0dfa58438a9ba2b2d3cdfe22cd9cad5df70b0/src/PowerShellEditorServices/Services/PowerShell/Host/PsesInternalHost.cs#L784-L826 We need to induce a...

Issue-Bug
Area-Engine
Area-Threading

Hi, Not sure is an issue or I doing something wrong... I am trying to kickoff POC project to integrate PSES into Visual Studio. Before starting to work on extension...

Issue-Question

Fix Windows PowerShell test host so that it's debuggable. _Originally posted by @andschwa in https://github.com/PowerShell/PowerShellEditorServices/pull/1635#discussion_r771590436_

Issue-Enhancement
Area-Test

The `System.Diagnostics.Process` has many more properties than this: ![processevald](https://cloud.githubusercontent.com/assets/5177512/11915577/acd322f2-a669-11e5-8fb6-a1bd0d3f745c.png) Repro with: ``` powershell $proc = Get-Process PowerShell ``` And inspect `$proc` in the Variables window.

Issue-Bug

Enter-PSHostProcess debugging is both an essential form of debugging, but also essential for PowerShell Azure Functions Host support. Because of PowerShell's quirks, we have to do special things to support...

Issue-Bug
Area-Engine

Because the pipeline thread consumer is single-threaded and runs tasks sequentially, there's the real possibility that a single bad task could starve it. For now, Ctrl+C *should* cancel whatever task...

Issue-Bug
Area-Engine
Area-Threading

Currently, regions are just treated as comments, and thus the new built-in bracket colorizer fails to recognize them as sections. Changing their tokens to non-comments will allow them to be...

Issue-Enhancement
Area-IntelliSense

Let's remove all the usages of `dynamic` so we don't have to depend on the `Microsoft.CSharp` nuget package. `dynamic` is very "against the typical rules" anyway.

Issue-Enhancement
Up for Grabs
Area-General