We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5fdb53 commit 85d9eb7Copy full SHA for 85d9eb7
src/LanguageServerProtocol.fs
@@ -358,7 +358,7 @@ module Server =
358
"workspace/willDeleteFiles", requestHandling (fun s p -> s.WorkspaceWillDeleteFiles(p))
359
"workspace/didDeleteFiles", requestHandling (fun s p -> s.WorkspaceDidDeleteFiles(p) |> notificationSuccess)
360
"workspace/symbol", requestHandling (fun s p -> s.WorkspaceSymbol(p))
361
- "workspace/executeCommand ", requestHandling (fun s p -> s.WorkspaceExecuteCommand(p))
+ "workspace/executeCommand", requestHandling (fun s p -> s.WorkspaceExecuteCommand(p))
362
"shutdown", requestHandling (fun s () -> s.Shutdown() |> notificationSuccess)
363
"exit", requestHandling (fun s () -> s.Exit() |> notificationSuccess) ]
364
|> Map.ofList
0 commit comments