Skip to content

Commit b3458e6

Browse files
committed
Change workspace/_synchronize to workspace/synchronize
swiftlang/sourcekit-lsp#2092 changes the synchronize request to no longer be experimental.
1 parent e22f10b commit b3458e6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test-sourcekit-lsp/test-sourcekit-lsp.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,6 @@ def main():
132132
{
133133
"rootPath": args.package,
134134
"capabilities": {},
135-
"initializationOptions": {
136-
"experimentalFeatures": ["synchronize-request"]
137-
},
138135
},
139136
)
140137

@@ -150,7 +147,7 @@ def main():
150147
},
151148
)
152149

153-
connection.send_request("workspace/_synchronize", {"index": True})
150+
connection.send_request("workspace/synchronize", {"index": True})
154151
foo_definition_response = connection.send_request(
155152
"textDocument/definition",
156153
{

0 commit comments

Comments
 (0)