CompletionPredictor icon indicating copy to clipboard operation
CompletionPredictor copied to clipboard

Completion Method Overload Signatures Should Persist when that signature is selected

Open JustinGrote opened this issue 1 year ago • 1 comments

Prerequisites

  • [X] Write a descriptive title.

Description of the new feature/enhancement

When I autocomplete for a .NET method, the currently highlighted method shows the overload signatures image

However, If I select a particular method, the overload signatures should continue to display until I close the parens on the other side. image

Bonus: If I specify a parameter where the type can be determined, when I type comma the overload signatures should only filter to the ones that are now relevant.

Proposed technical implementation details (optional)

Described Above.

JustinGrote avatar Jan 25 '24 05:01 JustinGrote

Due to the limitation of the tab completion results returned from PowerShell, the tool tip is just a multi-line string. So, it's not feasible to support this in MenuComplete.

That being said, it could be possible to support a similar experience with CompletionPredictor, though it won't be easy.

daxian-dbw avatar Jan 30 '24 19:01 daxian-dbw