PowerShell-RFC
PowerShell-RFC copied to clipboard
RFC (Request for Comments) documents for community feedback on design changes and improvements to PowerShell ecosystem
### Summary of the new feature / enhancement I am wondering if users find it frustrating to have to change the execution policy on both Windows PowerShell and PowerShell 7...
Adding `ErrorType` property to `ErrorRecord` and making `trap`s handle non-terminating errors as well. ```pwsh trap { if($_.ErrorType -eq "Terminating") { "oh no!" } else { "this is ok" continue }...
This PR originally contained multiple RFCs that were related to error handling in PowerShell. I have separated three of the RFCs into their own PRs (#219, #220, and #221), and...
--- RFC: Author: John Bevan Status: Draft SupercededBy: Version: Area: Standard Functions Comments Due: Plan to implement: --- # Get-ChildItem; Add IncludeRoot Switch Suggestion: Currently if you wish to fetch...
#269 Provide a base class, ArgumentCompleter, to simplify writing custom argument completers Some common tasks need to be done almost every time a completer is written. Things like quoting arguments...
Related discussion in #109, specifically [this comment](https://github.com/PowerShell/PowerShell-RFC/pull/109#issuecomment-460411142): > Finally got around to reviewing this with @PowerShell/powershell-committee. > > It sounds like the problem that's being solved here is to convert...
Apparently you need to put single quotes around numbers with leading zeros in YAML, and many of our RFC numbers are probably wrong because of this. We should fix it.
As use of the RFC Process grows and proposals to enhance and expand language features increases, I feel there is a need to make a minor amendment to the RFC...