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 initialize request can include a list of workspace folders:
/** * The workspace folders configured in the client when the server starts. * This property is only available if the client supports workspace folders. * It can be `null` if the client supports workspace folders but none are * configured. * * @since 3.6.0 */
workspaceFolders?: WorkspaceFolder[]|null;
pylsp ignores those during initialize and expects the client to send the workspace/didChangeWorkspaceFolders notification to initialize the workspace folders. Expecting that notification is a bug since it only needs to be called when folders change, relative to the ones reported in initialize.
The text was updated successfully, but these errors were encountered:
rchl
added a commit
to rchl/python-lsp-server
that referenced
this issue
Jul 1, 2021
Don't ignore workspace folders provided through the initialize request
expecting that the client calls sends the workspace/didChangeWorkspaceFolders
notification. Expecting that notification is a bug since it only needs
to be sent when folders change, relative to the ones reported in initialize.
Fixespython-lsp#48
Don't ignore workspace folders provided through the initialize request
expecting that the client sends the workspace/didChangeWorkspaceFolders
notification. Expecting that notification is a bug since it only needs
to be sent when folders change, relative to the ones reported in initialize.
Fixespython-lsp#48
* Initialize workspaces from the initialize request
Don't ignore workspace folders provided through the initialize request
expecting that the client sends the workspace/didChangeWorkspaceFolders
notification. Expecting that notification is a bug since it only needs
to be sent when folders change, relative to the ones reported in initialize.
Fixes#48
* fix reporter pylint issues
The
initialize
request can include a list of workspace folders:pylsp ignores those during initialize and expects the client to send the
workspace/didChangeWorkspaceFolders
notification to initialize the workspace folders. Expecting that notification is a bug since it only needs to be called when folders change, relative to the ones reported ininitialize
.The text was updated successfully, but these errors were encountered: