docs: Update the lsp-extensions.md with the Hover Range capability

This commit is contained in:
Alexander Gonzalez 2021-07-26 17:05:59 -04:00
parent 506db1852c
commit ca85185bc6
2 changed files with 30 additions and 5 deletions

View file

@ -21,7 +21,7 @@ export const reloadWorkspace = new lc.RequestType0<null, void>("rust-analyzer/re
export const hover = new lc.RequestType<HoverParams, lc.Hover | null, void>("textDocument/hover");
export interface HoverParams extends lc.WorkDoneProgressParams{
export interface HoverParams extends lc.WorkDoneProgressParams {
textDocument: lc.TextDocumentIdentifier;
position: lc.Range | lc.Position;
}