aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands/on_enter.ts
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-05-25 09:59:54 +0100
committerAleksey Kladov <[email protected]>2020-05-25 09:59:54 +0100
commit4a013ec62d2dfacaf6010b08c96947aa38481721 (patch)
treee4fe67c781801e5e75c1cece914b315bed546b4d /editors/code/src/commands/on_enter.ts
parent1527feb744c7911b6ca482554f0399d3ef0ebfdc (diff)
Remove dead code
Diffstat (limited to 'editors/code/src/commands/on_enter.ts')
-rw-r--r--editors/code/src/commands/on_enter.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/on_enter.ts b/editors/code/src/commands/on_enter.ts
index a7871c31e..0e4769633 100644
--- a/editors/code/src/commands/on_enter.ts
+++ b/editors/code/src/commands/on_enter.ts
@@ -2,7 +2,7 @@ import * as vscode from 'vscode';
2import * as ra from '../rust-analyzer-api'; 2import * as ra from '../rust-analyzer-api';
3 3
4import { Cmd, Ctx } from '../ctx'; 4import { Cmd, Ctx } from '../ctx';
5import { applySnippetWorkspaceEdit } from '.'; 5import { applySnippetWorkspaceEdit } from '../snippets';
6 6
7async function handleKeypress(ctx: Ctx) { 7async function handleKeypress(ctx: Ctx) {
8 const editor = ctx.activeRustEditor; 8 const editor = ctx.activeRustEditor;