Skip to content
Merged
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
44 changes: 37 additions & 7 deletions ocaml-lsp-server/docs/ocamllsp/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ interface config {
*/
extendedHover: { enable : boolean }

/**
* Enable/Disable Standard Hover
* @default true
* @since 1.21
*/
standardHover: { enable : boolean }

codelens: {
/**
* Enable/Disable CodeLens
Expand All @@ -38,12 +45,28 @@ interface config {
*/
duneDiagnostics: { enable : boolean }

/**
* Enable/Disable Inlay Hints
* @default false
* @since 1.18
*/
inlayHints: { enable : boolean }
inlayHints: {
/**
* Enable/Disable Inlay Hints for pattern variables
* @default false
* @since 1.23
*/
hintPatternVariables : boolean

/**
* Enable/Disable Inlay Hints for let bindings
* @default false
* @since 1.23
*/
hintLetBindings : boolean

/**
* Enable/Disable Inlay Hints for function params
* @default false
* @since 1.23
*/
hintFunctionParams : boolean
}

/**
* Enable/Disable Syntax Documentation
Expand All @@ -54,9 +77,16 @@ interface config {

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

/**
* Enable/Disable Shorten Merlin Diagnostics
* @default false
* @since 1.23
*/
shortenMerlinDiagnostics: { enable : boolean }
}
```
Loading