Skip to content

Commit

Permalink
Fix for opening lint config
Browse files Browse the repository at this point in the history
  • Loading branch information
worksofliam committed Apr 10, 2022
1 parent 6f9bc98 commit ed0b5d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vscode/LinterWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit ed0b5d6

Please sign in to comment.