Skip to content

Latest commit

 

History

History
53 lines (45 loc) · 1.01 KB

File metadata and controls

53 lines (45 loc) · 1.01 KB

Configuration

The ocamllsp support the following configurations.

These configurations are sent through the didChangeConfiguration notification.

interface config {
  /**
  * Enable/Disable Extended Hover
  * @default false
  * @since 1.16
  */
  extendedHover: { enable : boolean }

  /**
  * Enable/Disable CodeLens
  * @default false
  * @since 1.16
  */
  codelens: { enable : boolean }

  /**
  * Enable/Disable Dune diagnostics
  * @default true
  * @since 1.18
  */
  duneDiagnostics: { enable : boolean }

  /**
  * Enable/Disable Inlay Hints
  * @default false
  * @since 1.18
  */
  inlayHints: { enable : boolean }

  /**
  * Enable/Disable Syntax Documentation
  * @default false
  * @since 1.18
  */
  syntaxDocumentation: { enable : boolean }

  /**
  * Enable/Disable Merlin Jump code actions
  * @default true
  * @since 1.19
  */
  merlinJumpCodeActions: { enable : boolean }
}