PowerShellEditorServices
PowerShellEditorServices copied to clipboard
A common platform for PowerShell development support in any editor or application!
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...
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....
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...
See the following two issues for more information. https://github.com/Microsoft/vscode/issues/4057 https://github.com/PowerShell/vscode-powershell/issues/117
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...
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....
``` 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...
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...
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).
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...