How to get custom PowerShell completer to run without any prefix for the next argument?
PowerShell allows you to register a custom completer like so:
How to have powershell’s autocomplete not insert a function’s opening parenthesis?
If you enter anything that autocompletes to a .net function name, for example enter [Io.File]::A
and hit tab, it autocompletes to [Io.File]::AppendAllLines(
. How do you have it not insert the function’s opening parenthesis?