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
Copy file name to clipboardExpand all lines: docs/troubleshooting.md
+14-7
Original file line number
Diff line number
Diff line change
@@ -147,12 +147,19 @@ and you can ask for new features [in their repository](https://github.com/Micros
147
147
- Document formatting is provided by [PSScriptAnalyzer], but there
148
148
may be opportunities to improve our integration with it in the
149
149
[PowerShell Extension] too.
150
-
- PSReadLine throws an error ever so often [#3701](https://github.com/PowerShell/vscode-powershell/issues/3701)
151
-
- This is a known issue due to the
152
-
`OnPowerShellIdle` function
153
-
waiting to process events unknown we know the rest of the startup process has finished.
154
-
- A known work around includes unregistering from this event. `Get-EventSubscriber -Force -SourceIdentifier PowerShell.OnIdle -EA 0 | Unregister-Event -Force` can be added to your profile to help prevent this issue.
155
-
- Related Issues [#3091](https://github.com/PowerShell/PSReadLine/issues/3091)[#16585](https://github.com/Azure/azure-powershell/issues/16586)
150
+
- PSReadLine throws an error ever so often - [#3701](https://github.com/PowerShell/vscode-powershell/issues/3701)
151
+
- This is a known issue due to the PowerShell eventing framework running registered
152
+
`OnIdle` events outside of PowerShell Editor Service's dedicated PowerShell execution
153
+
pipeline. Until we can disable event registration, you will need to avoid registering
154
+
events in the first place.
155
+
- A known work around includes unregistering from this event.
0 commit comments