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

In some cases, there will logically be duplicate Intellisense results. In these cases, we should disambiguate: - Which module the command is a member of - Which module version the...

Issue-Enhancement
Area-IntelliSense

Currently we use a rather simplistic means for parsing parameters sent to the PSES host process. We need a more acceptable design for reading parameters passed from the command line....

Issue-Enhancement

The PowerShellContext should be able to run PowerShell jobs without issue. A user of the VS Code extension has reported that they're not able to run a script that starts...

Issue-Bug

See the following two issues for more information. https://github.com/Microsoft/vscode/issues/4057 https://github.com/PowerShell/vscode-powershell/issues/117

Issue-Bug

Currently any files that are referenced from an edited script (i.e. dot-source references) are being resolved and loaded by the language service. Since we want to target remote editing scenarios...

Issue-Enhancement

I just implemented PowerShell Gallery module update logic for the PowerShell ISE Preview and realized that this behavior really should be made available to all editors which use Editor Services....

Issue-Enhancement

``` Add-Type -AssemblyName System.Windows.Forms $form = New-Object System.Windows.Forms.Form $form. ``` Paste this into a ps1 file in vs code. I get no intellisense `$form.`. If I retype each line, then...

Issue-Bug
ISE-Parity

This bug is the continuation of bug #130 where we'd like to reduce the noise of prompt output when the debugger stops at breakpoints. For editors like VS Code which...

Issue-Enhancement

To simplify usage of PowerShell Editor Services in JavaScript-based applications, we should package and ship the host and related binaries via [npm](https://www.npmjs.com/) (in addition to NuGet).

Issue-Enhancement

There is a timing issue with the shutdown sequence of the DebugAdapter which occasionally causes test hangs because the `terminated` event is not received. My guess is that this event...

Issue-Bug