Skip to content

Commit

Permalink
Merge pull request #136 from themkat/inlay_hint_settings
Browse files Browse the repository at this point in the history
Add new inlay hints properties
  • Loading branch information
fwcd authored Jan 14, 2024
2 parents 3f94ece + 358e8ea commit c8e7c29
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,21 @@
"default": true,
"description": "[DEPRECATED] Specifies whether code completion should provide snippets (true) or plain-text items (false).",
"deprecationMessage": "Use 'kotlin.completion.snippets.enabled'"
},
"kotlin.inlayHints.typeHints": {
"type": "boolean",
"default": false,
"description": "Whether to provide inlay hints for types on declaration sites or not."
},
"kotlin.inlayHints.parameterHints": {
"type": "boolean",
"default": false,
"description": "Whether to provide inlay hints for parameters on call sites or not."
},
"kotlin.inlayHints.chainedHints": {
"type": "boolean",
"default": false,
"description": "Whether to provide inlay hints on chained function calls or not."
}
}
}
Expand Down

0 comments on commit c8e7c29

Please sign in to comment.