PowerTab
PowerTab copied to clipboard
PowerTab doesn't work if line continuation character used
If you use the line continuation character, powertab doesn't work correctly.
For example, compare:
PS C:\>Get-Command -Name <tab>

vs
PS C:\>Get-Command `
>> -Name <tab>

In this example, the second case uses the default tab handler (directory)
You can also see the issue more generically this way:
PS C:\>Get-Command -<tab>
vs
PS C:\>Get-Command `
>> -<tab>