From ed0b5d604b49fd8581460d9937e3b261253d0989 Mon Sep 17 00:00:00 2001 From: Liam Barry Allan Date: Sun, 10 Apr 2022 14:42:13 -0400 Subject: [PATCH] Fix for opening lint config --- src/vscode/LinterWorker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vscode/LinterWorker.js b/src/vscode/LinterWorker.js index 363f598c..a965a0db 100644 --- a/src/vscode/LinterWorker.js +++ b/src/vscode/LinterWorker.js @@ -101,7 +101,7 @@ module.exports = class LinterWorker { if (path) { Output.write(`Current path: ${path}`); - const exists = await vscode.commands.executeCommand(`code-for-ibmi.openEditable`, path); + const exists = await vscode.commands.executeCommand(`code-for-ibmi.openEditable`, path, 1); if (!exists) { const content = instance.getContent();