vscode: press ; to respect semicolons

This commit is contained in:
Veetaha
2020-02-17 22:09:44 +02:00
parent 64755b5e1f
commit 7379964048
7 changed files with 17 additions and 17 deletions

View File

@@ -16,7 +16,7 @@ export * from './ssr';
export function collectGarbage(ctx: Ctx): Cmd {
return async () => {
ctx.client?.sendRequest<null>('rust-analyzer/collectGarbage', null);
await ctx.client?.sendRequest<null>('rust-analyzer/collectGarbage', null);
};
}