Skip to content

Commit

Permalink
Merge pull request #223 from mattn/fix-didchangeworkspacefolders
Browse files Browse the repository at this point in the history
fix workspace/didChangeWorkspaceFolders
  • Loading branch information
mattn authored Jul 29, 2023
2 parents 9233276 + 1e53147 commit 525c3de
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions langserver/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -680,6 +680,8 @@ func (h *langHandler) handle(ctx context.Context, conn *jsonrpc2.Conn, req *json
return h.handleWorkspaceExecuteCommand(ctx, conn, req)
case "workspace/didChangeConfiguration":
return h.handleWorkspaceDidChangeConfiguration(ctx, conn, req)
case "workspace/didChangeWorkspaceFolders":
return h.handleDidChangeWorkspaceWorkspaceFolders(ctx, conn, req)
case "workspace/workspaceFolders":
return h.handleWorkspaceWorkspaceFolders(ctx, conn, req)
}
Expand Down

0 comments on commit 525c3de

Please sign in to comment.