ocaml
0
fork

Configure Feed

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

formatting

+6 -7
+6 -6
lib/language_server/Completion.ml
··· 334 334 let title_text = render title in 335 335 let filterText = insertText ^ " " ^ title_text in 336 336 Option.some @@ 337 - L.CompletionItem.create 338 - ?documentation 339 - ~label: (Format.(asprintf "%a (%s)" pp_print_string title_text (URI_scheme.name uri))) 340 - ~insertText 341 - ~filterText 342 - () 337 + L.CompletionItem.create 338 + ?documentation 339 + ~label: (Format.(asprintf "%a (%s)" pp_print_string title_text (URI_scheme.name uri))) 340 + ~insertText 341 + ~filterText 342 + () 343 343 344 344 let new_addr_completions ~(forest : State.t) : L.CompletionItem.t list = 345 345 let next mode = URI_util.next_uri ~prefix: None ~mode ~forest in
-1
lib/language_server/Inlay_hint.ml
··· 49 49 let hints = extract_inlayable_hints ~config ~forest rest in 50 50 list_of_option hint_opt @ hints 51 51 52 - 53 52 let compute (params : L.InlayHintParams.t) : L.InlayHint.t list option = 54 53 let Lsp_state.{forest; _} = Lsp_state.get () in 55 54 let config = forest.config in