PowerShellEditorServices
PowerShellEditorServices copied to clipboard
A common platform for PowerShell development support in any editor or application!
See the following issue for more details: https://github.com/PowerShell/vscode-powershell/issues/67
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...
In VS Code, the signature help window appears when the user is typing a command to give them hints about parameters.  It also has the ability to highlight the...
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...
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/
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...
C# methods are using the suggestions documentation window to show parameter hints (see below). . The information contained this suggestion detail needs to be used in parameter hints. Currently the...
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 "."...
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...
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...