ocaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

formatting

+5 -6
+5 -6
lib/language_server/Completion.ml
··· 301 301 ("datalog", "datalog"); 302 302 ("xmlns", "xmlns"); 303 303 ] 304 - |> List.map (fun (insertText, label) -> 305 - L.CompletionItem.create 306 - ~insertText 307 - ~label 308 - () 309 - ) 304 + |> List.map @@ fun (insertText, label) -> 305 + L.CompletionItem.create 306 + ~insertText 307 + ~label 308 + () 310 309 311 310 let compute ({context; position; textDocument = {uri}; _;}: L.CompletionParams.t) = 312 311 Logs.debug (fun m -> m "when computing completions for %s" (Lsp.Uri.to_string uri));