Module Ppx_core.Merlin_helpers

Some helpers to annotate the AST so merlin can decide which branches to look at and which branches to ignore.

Annotations merlin understand

val hide_attribute : Ppx_core__.Import.attribute

Adding this [@merlin.hide] attribute on a piece of AST "hides" it from merlin: it tells merlin not to consider that branch if another piece of AST with the same location exist.

val focus_attribute : Ppx_core__.Import.attribute

Adding this [@merlin.focus] attribute on a piece of AST tells merlin to prefer it to any other piece of AST when several have the same location.

Helpers

The following functions add the corresponding attribute (defined above) to specific pieces of AST.

val hide_pattern : Ppx_core__.Import.pattern ‑> Ppx_core__.Import.pattern
val focus_pattern : Ppx_core__.Import.pattern ‑> Ppx_core__.Import.pattern
val hide_expression : Ppx_core__.Import.expression ‑> Ppx_core__.Import.expression
val focus_expression : Ppx_core__.Import.expression ‑> Ppx_core__.Import.expression