Troy Campbell
Troy Campbell
ISE has the following property to get the Current File in the Editor: ```PowerShell $psise.CurrentFile ``` I don't know if you have ported it yet, but that makes it easy...
`psISE.CurrentFile.FullPath` uses the `$PWD.Path` for Untitled files. This makes the most sense to carry over to VSCode rather than using the Backups path for `$PSScriptRoot` The full behavior should be:...
Disagree strongly about turning Filtering off by default. My primary use case of `Out-GridView` is filtering and sorting, then selecting. I often output large results from log files, directories, or...
I think some concepts shouldn't be tags. It's very easy to abuse this concept where a better solution is to make more of the meta-data on software packages searchable instead...
This sounds like https://github.com/PowerShell/PowerShell/issues/1177 which was fixed in PowerShell 6.0 Alpha 15 FWIW.
As I mentioned in #3647, SQL Server differentiates terminating and non-terminating errors by calling it Severity. I think the term would be a good property name. Type will work too...
I just hope whatever improvements are made that good documentation is done on the advantages to doing a class over PSObject/traditional PowerShell with real-world examples. Part of why I find...
16x16 icons are far from obsolete. Small icons are required for list views like in Windows Explorer detail or list modes. They are used for status icons and titlebar icons,...
To add some context, there are a several [clear issues](https://github.com/microsoft/vscode/issues?utf8=%E2%9C%93&q=is:issue+label:integrated-terminal+cls+) reported in VS Code. A few of them are about scrollback not clearing as expected because of winpty issues. From...
I prefer `$IsPosix`. The intent is more clear and avoids the confusion that I think a `$IsUnix` would bring.