Skip to content

Commit c5a2271

Browse files
bors[bot]matklad
andauthored
Merge #4572
4572: Link upstream issues r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
2 parents a95bb13 + 9d31b50 commit c5a2271

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

docs/dev/lsp-extensions.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ All capabilities are enabled via `experimental` field of `ClientCapabilities`.
77

88
## Snippet `TextEdit`
99

10+
**Issue:** https://github.com/microsoft/language-server-protocol/issues/724
11+
1012
**Client Capability:** `{ "snippetTextEdit": boolean }`
1113

1214
If this capability is set, `WorkspaceEdit`s returned from `codeAction` requests might contain `SnippetTextEdit`s instead of usual `TextEdit`s:
@@ -38,6 +40,8 @@ At the moment, rust-analyzer guarantees that only a single edit will have `Inser
3840

3941
## Join Lines
4042

43+
**Issue:** https://github.com/microsoft/language-server-protocol/issues/992
44+
4145
**Server Capability:** `{ "joinLines": boolean }`
4246

4347
This request is send from client to server to handle "Join Lines" editor action.
@@ -122,13 +126,15 @@ SSR with query `foo($a:expr, $b:expr) ==>> ($a).foo($b)` will transform, eg `foo
122126

123127
## `CodeAction` Groups
124128

129+
**Issue:** https://github.com/microsoft/language-server-protocol/issues/994
130+
125131
**Client Capability:** `{ "codeActionGroup": boolean }`
126132

127133
If this capability is set, `CodeAction` returned from the server contain an additional field, `group`:
128134

129135
```typescript
130136
interface CodeAction {
131-
title: string;
137+
title: string;
132138
group?: string;
133139
...
134140
}

0 commit comments

Comments
 (0)