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
Currently when the PowerShellContext starts up, it happens before the Logger has been enabled which means that any log messages written at that point won't be visible in the log file. Right now I have to initialize an EditorSession in the constructor of both the LanguageServer and DebugAdapter classes so that things are set up before the channel gets started.
We need to fix the current ProtocolServer startup sequence so that everything happens in the proper order when ProtocolServer.Start is called.
The text was updated successfully, but these errors were encountered:
This change causes the LanguageClient class to not be created on
non-Windows OSes (specifically OS X and Linux). Previously this had not
caused a major issue for users on OS X but it eventually became apparent
that VS Code's default word-based completion engine did not work for OS X
users because we were still registering our completion provider even
though it was not able to execute on that OS.
Currently when the PowerShellContext starts up, it happens before the Logger has been enabled which means that any log messages written at that point won't be visible in the log file. Right now I have to initialize an EditorSession in the constructor of both the LanguageServer and DebugAdapter classes so that things are set up before the channel gets started.
We need to fix the current ProtocolServer startup sequence so that everything happens in the proper order when ProtocolServer.Start is called.
The text was updated successfully, but these errors were encountered: