Skip to content

Commit e09ade6

Browse files
committed
Presence of .merlin.skip-if-not-cwd skips config in dir
Mitigation for https://github.com/ocaml/merlin/issues 1869
1 parent 2b9cd21 commit e09ade6

File tree

2 files changed

+36
-15
lines changed

2 files changed

+36
-15
lines changed

src/kernel/mconfig_dot.ml

+27-14
Original file line numberDiff line numberDiff line change
@@ -404,25 +404,38 @@ let find_project_context start_dir =
404404
then Some dir
405405
else None
406406
in
407+
let cwd = Sys.getcwd () in
408+
let cwd = Misc.canonicalize_filename ~cwd cwd in
407409

408410
let rec loop workdir dir =
409411
try
410412
Some
411-
(List.find_map [ ".merlin"; "dune-project"; "dune-workspace" ]
412-
~f:(fun f ->
413-
let fname = Filename.concat dir f in
414-
if Sys.file_exists fname && not (Sys.is_directory fname) then
415-
(* When starting [dot-merlin-reader] from [dir]
413+
(List.find_map [
414+
".merlin.skip-if-not-cwd";
415+
".merlin"; "dune-project"; "dune-workspace"
416+
]
417+
~f:(fun f ->
418+
let fname = Filename.concat dir f in
419+
if Sys.file_exists fname && not (Sys.is_directory fname)
420+
then (
421+
(* Special case:
422+
1. exists .merlin.skip-if-not-cwd
423+
2. not cwd (aka. `cwd <> dir`) *)
424+
if f = ".merlin.skip-if-not-cwd" then (
425+
if cwd <> Misc.canonicalize_filename ~cwd dir then
426+
raise Not_found
427+
else None)
428+
else
429+
(* When starting [dot-merlin-reader] from [dir]
416430
the workdir is always [dir] *)
417-
let workdir = if f = ".merlin" then None else workdir in
418-
let workdir = Option.value ~default:dir workdir in
419-
Some
420-
( { workdir;
421-
process_dir = dir;
422-
configurator = Option.get (Configurator.of_string_opt f)
423-
},
424-
fname )
425-
else None))
431+
let workdir = if f = ".merlin" then None else workdir in
432+
let workdir = Option.value ~default:dir workdir in
433+
Some ({
434+
workdir;
435+
process_dir = dir;
436+
configurator = Option.get (Configurator.of_string_opt f)
437+
}, fname))
438+
else None))
426439
with Not_found ->
427440
let parent = Filename.dirname dir in
428441
if parent <> dir then

src/kernel/mconfig_dot.mli

+9-1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,14 @@ val get_config : context -> string -> config * string list
8080
- dune-project
8181
- dune-workspace
8282
83-
They are detected in that order. [dune] and [jbuild] file do not need to be taken into account because any project using a recent version of dune should have a dune-project file which is even auto-generated when it is missing. And only recent versions of dune will stop writing .merlin files.
83+
They are detected in that order. [dune] and [jbuild] file do not need to
84+
be taken into account because any project using a recent version of dune
85+
should have a dune-project file which is even auto-generated when it is
86+
missing. And only recent versions of dune will stop writing .merlin files.
87+
88+
The presence of the file [".merlin.skip-if-not-cwd"] in a directory means
89+
that the three (3) project configuration files are {b not} checked if the
90+
directory containing [".merlin.skip-if-not-cwd"] is not the current
91+
working directory.
8492
*)
8593
val find_project_context : string -> (context * string) option

0 commit comments

Comments
 (0)