diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/package.json | 3 | ||||
-rw-r--r-- | editors/code/src/commands/ssr.ts | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 44cb0971e..b8a2182f0 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -623,6 +623,9 @@ | |||
623 | ], | 623 | ], |
624 | "formatSpecifier": [ | 624 | "formatSpecifier": [ |
625 | "punctuation.section.embedded.rust" | 625 | "punctuation.section.embedded.rust" |
626 | ], | ||
627 | "*.mutable": [ | ||
628 | "markup.underline" | ||
626 | ] | 629 | ] |
627 | } | 630 | } |
628 | } | 631 | } |
diff --git a/editors/code/src/commands/ssr.ts b/editors/code/src/commands/ssr.ts index 6fee051fd..4ef8cdf04 100644 --- a/editors/code/src/commands/ssr.ts +++ b/editors/code/src/commands/ssr.ts | |||
@@ -11,7 +11,7 @@ export function ssr(ctx: Ctx): Cmd { | |||
11 | 11 | ||
12 | const options: vscode.InputBoxOptions = { | 12 | const options: vscode.InputBoxOptions = { |
13 | value: "() ==>> ()", | 13 | value: "() ==>> ()", |
14 | prompt: "EnteR request, for example 'Foo($a:expr) ==> Foo::new($a)' ", | 14 | prompt: "Enter request, for example 'Foo($a:expr) ==> Foo::new($a)' ", |
15 | validateInput: async (x: string) => { | 15 | validateInput: async (x: string) => { |
16 | try { | 16 | try { |
17 | await client.sendRequest(ra.ssr, { query: x, parseOnly: true }); | 17 | await client.sendRequest(ra.ssr, { query: x, parseOnly: true }); |