From 8c04f3f9f9c7e56f6ba4a34c82d695f0d1c06d0b Mon Sep 17 00:00:00 2001 From: Vitor Arruda Date: Sun, 27 Jun 2021 20:00:07 -0400 Subject: [PATCH] Debug FS --- src/extension.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/extension.ts b/src/extension.ts index 3014f59..e2124d2 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -211,6 +211,9 @@ function openReplClient( }; }, ); + + openedRepls[replInfo.id] = { replInfo, client }; + if (replInfo.lang.engine === 'goval') { const output = new ReplitOutput(client); @@ -225,7 +228,6 @@ function openReplClient( `This repl is a ${replInfo.lang.engine} repl, so it has limited features.`, ); } - openedRepls[replInfo.id] = { replInfo, client }; return client; }