MartinGC94

Results 166 comments of MartinGC94

This module is bundled with Windows and is not maintained in this repository. Unfortunately the only way to provide feedback about it is to submit it via the "Feedback hub"...

That's not tab completion, it's prediction. The standard way to accept predictions is the right arrow key, you can bind it to Tab like this: `Set-PSReadLineKeyHandler -Function AcceptSuggestion -Chord Tab`...

I don't understand the actual issue here. You don't like the fact that AMSI logs sensitive arguments like base64 encoded secrets, right? But why is that? AMSI is used by...

Let's say the PowerShell team completely removes the AMSI API from the product, what then? Do you think the AV software will just ignore the PowerShell process and let it...

Awesome, I've wanted this in PS ever since I learned that it was a thing in C#. With tab completion this will make it much easier to call methods in...

@jborean93 I've made a PR with some change suggestions for the parsing here: https://github.com/jborean93/PowerShell/pull/2 feel free to take a look.

I've added completion for this in my own branch here: https://github.com/MartinGC94/PowerShell/tree/NamedArgCompletion that people can test out if they want to. I'll create a PR for it once this one gets...

Thanks for the report, seems to have been a regression added here: https://github.com/PowerShell/PowerShell/pull/17716 I'm currently running the tests for a fix.

Thanks @sdwheeler you are right that those `using` statements are not currently supported but I'm assuming/hoping that this PR: https://github.com/PowerShell/PowerShell/pull/16734 which adds those features will get merged in the near...

With the PR: https://github.com/PowerShell/PowerShell/pull/18764 declined, I guess we need to think about some other alternatives for this. Ideally the editor would be able to tell PowerShell which file a particular...