mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 13:25:09 +00:00
Fix SSR prompt following #4919
This commit is contained in:
parent
6a067ce947
commit
2a18ef0b09
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ export function ssr(ctx: Ctx): Cmd {
|
|||
|
||||
const options: vscode.InputBoxOptions = {
|
||||
value: "() ==>> ()",
|
||||
prompt: "Enter request, for example 'Foo($a:expr) ==> Foo::new($a)' ",
|
||||
prompt: "Enter request, for example 'Foo($a) ==> Foo::new($a)' ",
|
||||
validateInput: async (x: string) => {
|
||||
try {
|
||||
await client.sendRequest(ra.ssr, { query: x, parseOnly: true });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue