ocaml-lsp
ocaml-lsp copied to clipboard
Feature Request: Support configurable inlay hints similar to rust-analyzer
trafficstars
Currently, users need to use the general VS Code setting editor.inlayHints.enabled to control inlay hints. While this works, having language-specific controls similar to what rust-analyzer provides would be helpful. For example, for rust there is:
"rust-analyzer.inlayHints.typeHints.enable": false,
"rust-analyzer.inlayHints.parameterHints.enable": false,
"rust-analyzer.inlayHints.chainingHints.enable": false,
"rust-analyzer.inlayHints.closingBraceHints.enable": false,