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
The language server sometimes crashes when gathering details about a command either for signature help or symbol hover when the user has set their $ErrorActionPreference to Stop. This will require handling the System.Management.Automation.ActionPreferenceStopException appropriately.
This change fixes an issue where the language server can sometimes crash
when the user has configured their $ErrorActionPreference variable to
"Stop" in the language server's session. The fix is to refactor existing
code to use a common code path that handles RuntimeExceptions
appropriately.
This change fixes an issue where the language server can sometimes crash
when the user has configured their $ErrorActionPreference variable to
"Stop" in the language server's session. The fix is to refactor existing
code to use a common code path that handles RuntimeExceptions
appropriately.
The language server sometimes crashes when gathering details about a command either for signature help or symbol hover when the user has set their
$ErrorActionPreference
toStop
. This will require handling theSystem.Management.Automation.ActionPreferenceStopException
appropriately.Original issue: PowerShell/vscode-powershell#187
The text was updated successfully, but these errors were encountered: