'VSCode powershell function signature intellisense suggestions

I want VSCode to show powershell function signatures within the open parentheses.

For example, if I create a file file.ps1, enable the Powershell extension, and then type into the editor

"my string".Replace(

when the cursor is after the ( I want a popover dialog to show the possible function signature parameters.

I know the System.String.Replace has multiple function parameters. I would like intellisense to display a popover like:

Replace(Char, Char)
Replace(String, String)
Replace(String, String, StringComparison)
Replace(String, String, Boolean, CultureInfo)

How do I enable VSCode intellisense to show powershell function signature popovers?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source