fix: documentation of SsrParams

Fix #11429 by extending the documentation of SsrParms with the
mandatory field 'selections'.  Copy its description from lsp_ext.rs.
This commit is contained in:
Felicián Németh 2022-02-12 15:47:54 +01:00
parent 7a17fb9c43
commit 7c7d6991dd

View file

@ -278,6 +278,8 @@ interface SsrParams {
textDocument: TextDocumentIdentifier;
/// Position where SSR was invoked.
position: Position;
/// Current selections. Search/replace will be restricted to these if non-empty.
selections: Range[];
}
```