Skip to content

Latest commit

 

History

History
46 lines (39 loc) · 902 Bytes

File metadata and controls

46 lines (39 loc) · 902 Bytes

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 }
}