You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some users with custom prompt functions have reported that an extra PS> is being printed out after their custom prompt function runs. This seems to be related to the return value of the function but I haven't been able to reproduce it yet. Investigating...
The text was updated successfully, but these errors were encountered:
This change fixes an issue in the integrated console where the result of
a user's custom prompt function would not be interpreted correctly,
causing the default prompt string of "PS>" to be written out when it
wasn't needed. The fix is to expect a PSObject result rather than
object so that we can evaluate the inner object's type correctly.
ResolvesPowerShell/vscode-powershell#808.
This change fixes an issue in the integrated console where the result of
a user's custom prompt function would not be interpreted correctly,
causing the default prompt string of "PS>" to be written out when it
wasn't needed. The fix is to expect a PSObject result rather than
object so that we can evaluate the inner object's type correctly.
ResolvesPowerShell/vscode-powershell#808.
Some users with custom prompt functions have reported that an extra
PS>
is being printed out after their custom prompt function runs. This seems to be related to the return value of the function but I haven't been able to reproduce it yet. Investigating...The text was updated successfully, but these errors were encountered: