Adrian Wright

Results 8 comments of Adrian Wright

Looking at the RegEx it makes a call to ```pwsh $(Get-AliasPattern git) ``` ```pwsh function Get-AliasPattern($cmd) { $aliases = @($cmd) + @(Get-Alias | Where-Object { $_.Definition -eq $cmd } |...

I've added a new alias to my list of aliases for regex testing purposes as suggested above: ```pwsh function Git-Checkout2 { git checkout $args } Set-Alias -Name gcko -Value Git-Checkout2...

I have tried doing exactly the same as you but when I hit `tab` nothing happens... N.B. I have created a `master` and `develop` branch. I get the same result...

> Try `gcko` instead of `gkco`. :-) Even correcting my typo and using `gcko` instead of `gkco` it still doesn't give me any tab completion on branch names.

I must check that I am setting the aliases before I call ```pwsh Import-Module posh-git -arg 0,0,1 ``` I agree it's brittle to rely on a RegEx expression to parse...

> Yes, the only way to uninstall SDKs that came with Visual Studio is via the VS installer. You said that you uninstalled VS, did you do that via the...

> I don't think you can uninstall VS from add/remove programs, so probably through VS installer then? Yes, I must have used the VS installer then. > So you have...

Has this issue been fixed by [dotnet/roslyn/pull/64642](https://github.com/dotnet/roslyn/pull/64642) ?