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

See the following issue for more details: https://github.com/PowerShell/vscode-powershell/issues/67

Issue-Enhancement
Area-IntelliSense

If the user modifies, add or removes a variable in the debug console during a debug stop, that should be reflected after execution of their command. We will probably need...

Issue-Enhancement
Area-Debugging

In VS Code, the signature help window appears when the user is typing a command to give them hints about parameters. ![image](https://cloud.githubusercontent.com/assets/79405/11184458/8cf73f06-8c2c-11e5-8dce-b2ff2c555cf2.png) It also has the ability to highlight the...

Issue-Enhancement
Area-IntelliSense

This affects references/occurrences finding and variable renaming. An example from Kirk: ``` powershell function Write-Item($itemCount) { $i = 1 while ($i -le $itemCount) { $str = "Output ${i}" Write-Output $str...

Issue-Enhancement
Area-Code Navigation

Apparently optional parameters cause issues with backwards compatibility in .NET APIs. Best to remove that pattern entirely. More info: http://haacked.com/archive/2010/08/10/versioning-issues-with-optional-arguments.aspx/

Issue-Enhancement

The following features do not work when inside a class: - Parameter hints - Get Definition - Get References - Change Occurrences - Symbol search When outside of a class...

Issue-Enhancement
Area-IntelliSense

C# methods are using the suggestions documentation window to show parameter hints (see below). ![csharpbug](https://cloud.githubusercontent.com/assets/6333152/9230772/09f9419c-40d9-11e5-83d8-862116da82a7.png). The information contained this suggestion detail needs to be used in parameter hints. Currently the...

Issue-Enhancement
Area-IntelliSense

The wordDefinition property in VSC includes the "." and "\" characters as word separators. This makes the completion suggestions complete incorrectly. For example, since any suggestion with "\" or "."...

Issue-Enhancement
Area-IntelliSense
ISE-Parity

For the following intellisense features the entire file (or multiple files if dot sourced) is/are being searched through for variable and parameters: - Get definition - Get references - Get...

Issue-Bug
Area-Code Navigation
Area-IntelliSense

Noted in #1474, a bunch of our factories used to abstract our logging setup during initialization are `IDisposable` and so have to call each other's `Dispose()` methods, all due to...

Issue-Enhancement
Area-Logging