-
Notifications
You must be signed in to change notification settings - Fork 843
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Inlay Hints #956
Comments
var someNumber = 123; @kjeremy Given the above JavaScript code, the Can you provide examples of a parameter hint and a chaining hint? |
What we do in
Here is a simplified, stringly-typed version of it (we use a discriminated union at our repo instead): import * as lc from "vscode-languageclient";
export interface InlayHint {
range: lc.Range;
label: string;
kind: string;
}
export interface InlayHintsParams {
textDocument: lc.TextDocumentIdentifier;
}
const inlayHints = new lc.RequestType<InlayHintsParams, InlayHint[], unknown>(
"rust-analyzer/inlayHints"
); The client-side implementation for this feature is very straight-forward and actually fits into < 250 lines of code. It currently uses the vscode text decorations feature (more precise inlay hints are
Our current implementation can be very easily generalized and integrated into LSP:
So this describes the pull-based implementation of inlay hints that is currently used at Maybe @matklad can elaborate on Intelij where they've natively implemented this feature and which model/API they've considered best to be used. |
@rcjsuen the chaining hint is a type hint that is displayed after each chain of the multiline method call. |
Linking this to microsoft/vscode#16221. |
Isn't it a dup of #405 ? |
Well they designed it to be separate from CodeLens but there is indeed an interesting overlap. ccls for example implemented a custom solution for inline CodeLens as well. |
And isn't it also a dup of #745 ? |
Yup, seems like there are at least four threads of discussion about LSP:
It makes sense to do some issue garbage collection at least :-) |
Enhancing code lens request seems fine by me! We need to:
|
+1
I think we only need "above" and "before". "after" is actually "before" the next character; "lineEnd" is before line break. For the case of the lineEnd or the last line, we can just say that if position reaches file end, it's the lineEnd of last line.
I don't think filtering should happen on client side. Instead, clients should send "didChangeConfiguration" request to inform the LS about which annotations it's interested in, so the LS can then avoid some useless computation and send smaller messages. |
If this is shoehorned into code lens, it would be really good for the user to have a way to configure, that only this kind of code lens is shown. For example, I find that |
So I think there are two ways we can spin this. First, the I lean towards the second approach, as it unlocks interesting possibilities (for example, the client can render the annotation only when the cursor is on an annotate element) and just seems more proper, as it doesn't encode to fine representation details into the protocol.
Leaning on the server-specific configuration would prevent users from enabling/disabling parameter hints for all languages with a single config. I feel we should do the same pattern we use for code actions -- client & server negotiate supported kinds, and then client can send More generally, while implemented the server I've noticed that it generally is a good idea to just pass configuration as a parameter to request, instead of relying on some ambient state. This is primarily because state makes everything painful, but I also see concrete tangible benefits with per-request filtering. For example, one of the biggest problem with inlay hints is that they are "annoying". I can imagine a client implementing "flash hits" action, which would show all hints momentarily, and dismiss them afterwards. With |
VSCode has a proposed API for this now: https://github.com/microsoft/vscode/blob/main/src/vs/vscode.proposed.d.ts. @dbaeumer does this mean anything for the timeline of having this in LSP? @HighCommander4 is working on this for clangd in https://reviews.llvm.org/D98748, mostly following the rust-analyzer protocol. Our hope is to converge with whatever gets standardized. Range is different between the two models:
You could accommodate both by using rust-analyzer's It seems like it'd be useful at some point to be able to "target" these for code actions (like diagnostics). In particular, to be able to make some deduced info explicit in the source code (spell out deduced types, annotate parameter names). But this seems like something that can reasonably be bolted on later. |
VS Code has shipped with a finalized native API for this. |
@dbaeumer This is missing the 3.17 milestone |
Correct and closing. |
After waiting a while for this, I was disappointed to find (and surprised that I'd missed it before) the Currently they're rendered using Decorations and custom messages from the LSP server, but I'd really like them to be something standard so other clients can use them without implementing custom messages (something that's unlikely to happen in editors that don't have a specific language extension and only generic LSP support). I've filed an issue with VS Code - if anyone else was planning to use them for something more generic, please consider adding 👍 ! |
Like @DanTup, I find the For example, here is roughly what a program would look like with the inlay hints interspersed:
I've also written a little more about it in a gist, which includes this program in the standard syntax, assembly syntax, and with inlay hints. |
@DanTup note that you don't have to use custom decorators to do that, it's possible to achieve this using today's inlay hints API. |
@matklad the decorations is the old implementation from before InlayHints. I wanted to migrate it to Inlay Hints. The wording of the kind suggests that the editor might assume type/param names of
Telling users to modify some "parameter names" color or similar to control this would be odd. In the past I've shipped things that didn't line up with the spec and things have changed/been broken, so I'm trying to avoid using things for purposes they might not be intended for (at least without some reasonable clarification that it's a valid use). |
Just wanted to know if there was any advances in the inlay hints in Helix. It's the only think keeping me from moving from VSCode... |
If there are two inlay hints request in flight for two different files, I see no way in the returned |
@poliorcetics the client request specifies which document it is for and specifies a request ID. The server response includes the request ID it corresponds to. This applies to all request/response pairs. Edit: this isn't described in each request/response message in the spec as it's part of the JSON-RPC layer that encloses them. |
I would like to upstream rust-analyzer's inlay hints feature. This allows an editor to place annotations inline with text to display parameter names, type hints etc.
See: microsoft/vscode-languageserver-node#609 for the proposal.
The text was updated successfully, but these errors were encountered: