MartinGC94
MartinGC94
# PR Summary Fixes https://github.com/PowerShell/PowerShell/issues/15450 Add tooltips for hashtable key completions Add completion for calculated properties for Compare-Object and ConvertTo-HTML Add argument completer for the Property parameter of ConvertTo-Html Use...
## Summary of the new feature/enhancement Some of the tooltips used for tab completion are stored as simple strings instead of using string resources that can be localized. This should...
# PR Summary Fixes https://github.com/PowerShell/PowerShellEditorServices/issues/1852 Decided to make a full fix for all hashtable key completion scenarios I could think of: - Fixes type inference for ConvertExpressions that use a...
# PR Summary Fixes https://github.com/PowerShell/PowerShell/issues/17653 Instead of looking for a parameter with the exact location specified, it instead looks for the parameter with a position closest to the specified location....
# PR Summary Fixes https://github.com/PowerShell/PowerShell/issues/2337 Fixes https://github.com/PowerShell/PowerShell/issues/13204 There were a lot of different ideas posted in this thread, and this is just my own personal preference/idea on how to solve...
# PR Summary Adds support for Type and namespace aliases. Type aliases support normal types, generic types (both open and closed) and array types. Usage example: ``` using type MyNormalType...
# PR Summary Adds completion for scenarios like `Get-VM | where State -eq ` and `Get-VM | where {$_.State -eq }` This only works when the left side of the...
### Prerequisites - [X] Write a descriptive title. - [X] Make sure you are able to repro it on the [latest released version](https://github.com/PowerShell/PowerShell/releases) - [X] Search the existing issues. -...
# PR Summary Updates the switch parameter completion to: * Make it more reliable (Some editing scenarios would prevent completions from showing up) * Add tooltips to explain the different...
# PR Summary Fixes https://github.com/PowerShell/PowerShell/issues/4549 Fixes https://github.com/PowerShell/PowerShell/issues/12079 Fixes https://github.com/PowerShell/PowerShell/issues/11422 Allows tab completion for parameters to continue working when script requirements like `#requires -RunAsAdministrator` fail due to the current session not...