Implement textDocument/inlayHint #559
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The LSP Specification introduced inlay hints in version 3.17 Reference
This PR adds supports for parameter inlay hints for function calls including builtins.
This feature is disabled by default and must be enabled by settings
enable_inlay_hints
inzls.json
or throughzls config
If a function call can display hover information but can't show inlay hints its probably a bug, feel free to inform me.
Options
The following options are currently implemented:
inlay_hints_show_builtin
bool
true
inlay_hints_exclude_builtins
[][]const u8
[]
inlay_hints_exclude_single_argument
bool
true
Note that these options are located in
src/inlay_hints.zig
and are currently not part ofzls config
orzls.json
.I am open to suggestions for more options and better defaults.
Examples taken from VS Code
Hovering over a hint will show its type
Tested on
augusterame.zls-vscode
andtiehuis.zig