mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Remove uneeded characters
This commit is contained in:
parent
09e12b7925
commit
4dca5adb3c
1 changed files with 3 additions and 3 deletions
|
@ -18,9 +18,9 @@ export async function handle() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const request: ExtendSelectionParams = {
|
const request: ExtendSelectionParams = {
|
||||||
selections: editor.selections.map(s => {
|
selections: editor.selections.map(s =>
|
||||||
return Server.client.code2ProtocolConverter.asRange(s);
|
Server.client.code2ProtocolConverter.asRange(s)
|
||||||
}),
|
),
|
||||||
textDocument: { uri: editor.document.uri.toString() }
|
textDocument: { uri: editor.document.uri.toString() }
|
||||||
};
|
};
|
||||||
const response = await Server.client.sendRequest<ExtendSelectionResult>(
|
const response = await Server.client.sendRequest<ExtendSelectionResult>(
|
||||||
|
|
Loading…
Reference in a new issue