Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/completor/merlin.ml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ let call merlin command flags printer =
let args = merlin.bin_path :: mode :: command
:: "-dot-merlin" :: merlin.dot_merlin :: flags in
info (fun pp -> pp "Merlin command: %s" (String.concat " " args)) ;
let proc = Lwt_process.open_process ("ocamlmerlin", Array.of_list args) in
let proc = Lwt_process.open_process (merlin.bin_path, Array.of_list args) in
let%lwt () = printer proc#stdin in
let%lwt () = Lwt_io.flush proc#stdin in
let%lwt () = Lwt_io.close proc#stdin in
Expand Down