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
Recently noticed following error messages in Sublime Text's console, when opening XML documents.
Error handling request
Traceback (most recent call last):
File "Packages\LSP\plugin\core\sessions.py", line 2273, in on_payload
handler(result, req_id)
File "Packages\LSP\plugin\core\sessions.py", line 1983, in m_client_unregisterCapability
unregistrations = params["unregisterations"] # typo in the official specification
KeyError: 'unregisterations'
The reason is client/unregisterCapability method being invoked without required unregisterations argument being passed, which is a protocol violation.
That's suspicious though as I'd interpret the following lines as the capability being registered/unregistered on demand, based on value of xml.symbols.enabled.
Recently noticed following error messages in Sublime Text's console, when opening XML documents.
The reason is
client/unregisterCapability
method being invoked without requiredunregisterations
argument being passed, which is a protocol violation.related with: sublimelsp/LSP#2331
The text was updated successfully, but these errors were encountered: