aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands/index.ts
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2019-12-31 17:59:59 +0000
committerGitHub <[email protected]>2019-12-31 17:59:59 +0000
commite4d217074d1f2c922cf8c5a247ca05fa06b0b7ed (patch)
tree1df182b9755a83c460c928ad8a0bf5ff76548e3c /editors/code/src/commands/index.ts
parentc8b98c46675396c4f9d26c6b001e01c81d84b89e (diff)
parentff0ceb30a9ab4162d0f1241d8b0f9aa531c3c9d2 (diff)
Merge #2711
2711: Add semicolons r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'editors/code/src/commands/index.ts')
-rw-r--r--editors/code/src/commands/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/commands/index.ts b/editors/code/src/commands/index.ts
index 4431fdcf6..9a1697dcb 100644
--- a/editors/code/src/commands/index.ts
+++ b/editors/code/src/commands/index.ts
@@ -36,14 +36,14 @@ function showReferences(ctx: Ctx): Cmd {
36function applySourceChange(ctx: Ctx): Cmd { 36function applySourceChange(ctx: Ctx): Cmd {
37 return async (change: sourceChange.SourceChange) => { 37 return async (change: sourceChange.SourceChange) => {
38 sourceChange.applySourceChange(ctx, change); 38 sourceChange.applySourceChange(ctx, change);
39 } 39 };
40} 40}
41 41
42function reload(ctx: Ctx): Cmd { 42function reload(ctx: Ctx): Cmd {
43 return async () => { 43 return async () => {
44 vscode.window.showInformationMessage('Reloading rust-analyzer...'); 44 vscode.window.showInformationMessage('Reloading rust-analyzer...');
45 await ctx.restartServer(); 45 await ctx.restartServer();
46 } 46 };
47} 47}
48 48
49export { 49export {