PowerTab icon indicating copy to clipboard operation
PowerTab copied to clipboard

PowerTab doesn't work if line continuation character used

Open ChristopherGLewis opened this issue 6 years ago • 0 comments

If you use the line continuation character, powertab doesn't work correctly.

For example, compare:

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

normal

vs

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

lcchar

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>

ChristopherGLewis avatar Jan 25 '19 22:01 ChristopherGLewis