diff --git a/docs/dev/lsp-extensions.md b/docs/dev/lsp-extensions.md index adea925b51..85df1188a8 100644 --- a/docs/dev/lsp-extensions.md +++ b/docs/dev/lsp-extensions.md @@ -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[]; } ```